#ifndef DICTIONARY_H #define DICTIONARY_H namespace icinga { typedef map::const_iterator ConstDictionaryIterator; typedef map::iterator DictionaryIterator; struct I2_BASE_API PropertyChangedEventArgs : public EventArgs { string Property; Variant OldValue; Variant NewValue; }; class I2_BASE_API Dictionary : public Object { private: map m_Data; public: typedef shared_ptr Ptr; typedef weak_ptr 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 OnPropertyChanged; }; } #endif /* DICTIONARY_H */