#ifndef ICINGAAPPLICATION_H #define ICINGAAPPLICATION_H namespace icinga { class IcingaApplication : public Application { private: ConnectionManager::Ptr m_ConnectionManager; int NewComponentHandler(ConfigObjectEventArgs::Ptr ea); int DeletedComponentHandler(ConfigObjectEventArgs::Ptr ea); int NewRpcListenerHandler(ConfigObjectEventArgs::Ptr ea); int DeletedRpcListenerHandler(ConfigObjectEventArgs::Ptr ea); public: typedef shared_ptr Ptr; typedef weak_ptr WeakPtr; IcingaApplication(void); virtual int Main(const vector& args); void PrintUsage(const string& programPath); virtual ConnectionManager::Ptr GetConnectionManager(void); }; } #endif /* ICINGAAPPLICATION_H */