18#ifndef _LOG4CXX_HELPER_PROPERTIES_H
19#define _LOG4CXX_HELPER_PROPERTIES_H
32class LOG4CXX_EXPORT Properties
35 typedef std::map<LogString, LogString> PropertyMap;
36 PropertyMap* properties;
37 Properties(
const Properties&);
38 Properties& operator=(
const Properties&);
126 void load(InputStreamPtr inStream);
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.
std::basic_string< logchar > LogString
Definition logstring.h:60