18#ifndef _LOG4CXX_HELPER_PROPERTIES_H
19#define _LOG4CXX_HELPER_PROPERTIES_H
22 #pragma warning (push)
23 #pragma warning ( disable: 4231 4251 4275 4786 )
41 typedef std::map<LogString, LogString> PropertyMap;
42 PropertyMap* properties;
132 void load(InputStreamPtr inStream);
181 #pragma warning (pop)
Definition: properties.h:39
std::vector< LogString > propertyNames() const
Returns an enumeration of all the keys in this property list, including distinct keys in the default ...
LogString setProperty(const LogString &key, const LogString &value)
Calls Properties::put.
LogString get(const LogString &key) const
Gets a property value.
void load(InputStreamPtr inStream)
Reads a property list (key and element pairs) from the input stream.
LogString put(const LogString &key, const LogString &value)
Puts a property value into the collection.
LogString getProperty(const LogString &key) const
Calls Properties::get.
Properties()
Create new instance.
Definition: messagehandler.h:23
std::basic_string< logchar > LogString
Definition: logstring.h:66