icinga2/base/dictionary.h

50 lines
1.2 KiB
C++

#ifndef DICTIONARY_H
#define DICTIONARY_H
namespace icinga
{
typedef map<string, Variant>::const_iterator ConstDictionaryIterator;
typedef map<string, Variant>::iterator DictionaryIterator;
struct I2_BASE_API PropertyChangedEventArgs : public EventArgs
{
string Property;
Variant OldValue;
Variant NewValue;
};
class I2_BASE_API Dictionary : public Object
{
private:
map<string, Variant> m_Data;
public:
typedef shared_ptr<Dictionary> Ptr;
typedef weak_ptr<Dictionary> WeakPtr;
bool GetProperty(string key, Variant *value) const;
void SetProperty(string key, const Variant& value);
bool GetPropertyString(string key, string *value);
void SetPropertyString(string key, const string& value);
bool GetPropertyInteger(string key, long *value);
void SetPropertyInteger(string key, long value);
bool GetPropertyDictionary(string key, Dictionary::Ptr *value);
void SetPropertyDictionary(string key, const Dictionary::Ptr& value);
bool GetPropertyObject(string key, Object::Ptr *value);
void SetPropertyObject(string key, const Object::Ptr& value);
DictionaryIterator Begin(void);
DictionaryIterator End(void);
Event<PropertyChangedEventArgs> OnPropertyChanged;
};
}
#endif /* DICTIONARY_H */