icinga2/base/configcollection.h

38 lines
909 B
C
Raw Normal View History

#ifndef CONFIGCOLLECTION_H
#define CONFIGCOLLECTION_H
namespace icinga
{
class ConfigHive;
class I2_BASE_API ConfigCollection : public Object
{
private:
weak_ptr<ConfigHive> m_Hive;
public:
typedef shared_ptr<ConfigCollection> Ptr;
typedef weak_ptr<ConfigCollection> WeakPtr;
typedef map<string, ConfigObject::Ptr>::iterator ObjectIterator;
map<string, ConfigObject::Ptr> Objects;
void SetHive(const weak_ptr<ConfigHive>& hive);
weak_ptr<ConfigHive> GetHive(void) const;
void AddObject(const ConfigObject::Ptr& object);
void RemoveObject(const ConfigObject::Ptr& object);
ConfigObject::Ptr GetObject(const string& name = string());
2012-04-18 15:22:25 +02:00
void ForEachObject(function<int (const ConfigObjectEventArgs&)> callback);
2012-04-18 15:22:25 +02:00
Event<ConfigObjectEventArgs> OnObjectCreated;
Event<ConfigObjectEventArgs> OnObjectRemoved;
Event<ConfigObjectEventArgs> OnPropertyChanged;
};
}
#endif /* CONFIGCOLLECTION_H */