2012-03-31 16:29:53 +02:00
|
|
|
#ifndef I2_ICINGAAPPLICATION_H
|
|
|
|
#define I2_ICINGAAPPLICATION_H
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
class IcingaApplication : public Application
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
ConnectionManager::RefType m_ConnectionManager;
|
|
|
|
|
2012-04-01 09:30:38 +02:00
|
|
|
int ConfigObjectCreatedHandler(ConfigHiveEventArgs::RefType ea);
|
|
|
|
int ConfigObjectRemovedHandler(ConfigHiveEventArgs::RefType ea);
|
|
|
|
|
2012-03-31 16:29:53 +02:00
|
|
|
public:
|
|
|
|
typedef shared_ptr<IcingaApplication> RefType;
|
|
|
|
typedef weak_ptr<IcingaApplication> WeakRefType;
|
|
|
|
|
|
|
|
IcingaApplication(void);
|
|
|
|
|
|
|
|
virtual int Main(const vector<string>& args);
|
|
|
|
|
|
|
|
virtual ConnectionManager::RefType GetConnectionManager(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* I2_ICINGAAPPLICATION_H */
|