Apache log4cxx Version 0.13.0
properties.h
Go to the documentation of this file.
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef _LOG4CXX_HELPER_PROPERTIES_H
19#define _LOG4CXX_HELPER_PROPERTIES_H
20
21#if defined(_MSC_VER)
22 #pragma warning (push)
23 #pragma warning ( disable: 4231 4251 4275 4786 )
24#endif
25
26
27#include <log4cxx/logstring.h>
30#include <map>
31#include <vector>
32#include <istream>
33
34namespace log4cxx
35{
36namespace helpers
37{
38class LOG4CXX_EXPORT Properties
39{
40 private:
41 typedef std::map<LogString, LogString> PropertyMap;
42 PropertyMap* properties;
43 Properties(const Properties&);
44 Properties& operator=(const Properties&);
45
46 public:
132 void load(InputStreamPtr inStream);
133
141 LogString setProperty(const LogString& key, const LogString& value);
149 LogString put(const LogString& key, const LogString& value);
150
151
158 LogString getProperty(const LogString& key) const;
165 LogString get(const LogString& key) const;
166
175 std::vector<LogString> propertyNames() const;
176}; // class Properties
177} // namespace helpers
178} // namespace log4cxx
179
180#if defined(_MSC_VER)
181 #pragma warning (pop)
182#endif
183
184
185#endif //_LOG4CXX_HELPER_PROPERTIES_H
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