#ifndef CONFIGOBJECT_H #define CONFIGOBJECT_H #include namespace icinga { class ConfigHive; class I2_BASE_API ConfigObject : public Dictionary { private: weak_ptr m_Hive; string m_Name; string m_Type; bool m_Replicated; int PropertyChangedHandler(const PropertyChangedEventArgs& dpcea); public: typedef shared_ptr Ptr; typedef weak_ptr WeakPtr; ConfigObject(const string& type, const string& name); void SetHive(const weak_ptr& hive); weak_ptr GetHive(void) const; void SetName(const string& name); string GetName(void) const; void SetType(const string& type); string GetType(void) const; void SetReplicated(bool replicated); bool GetReplicated(void) const; }; } #endif /* CONFIGOBJECT_H */