icinga2/base/confighive.h

33 lines
859 B
C
Raw Normal View History

#ifndef CONFIGHIVE_H
#define CONFIGHIVE_H
namespace icinga
{
class I2_BASE_API ConfigHive : public Object
{
public:
typedef shared_ptr<ConfigHive> Ptr;
typedef weak_ptr<ConfigHive> WeakPtr;
typedef map<string, ConfigCollection::Ptr>::iterator CollectionIterator;
2012-04-24 14:02:15 +02:00
typedef map<string, ConfigCollection::Ptr>::const_iterator CollectionConstIterator;
map<string, ConfigCollection::Ptr> Collections;
2012-04-03 11:39:26 +02:00
void AddObject(const ConfigObject::Ptr& object);
void RemoveObject(const ConfigObject::Ptr& object);
2012-04-22 16:45:31 +02:00
ConfigObject::Ptr GetObject(const string& collection,
const string& name = string());
ConfigCollection::Ptr GetCollection(const string& collection);
2012-04-22 16:45:31 +02:00
void ForEachObject(const string& type,
function<int (const EventArgs&)> callback);
Event<EventArgs> OnObjectCommitted;
2012-04-20 13:49:04 +02:00
Event<EventArgs> OnObjectRemoved;
};
}
#endif /* CONFIGHIVE_H */