packaging: Initial packaging
[platform/upstream/cmake.git] / Source / cmPropertyMap.h
1 /*============================================================================
2   CMake - Cross Platform Makefile Generator
3   Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
4
5   Distributed under the OSI-approved BSD License (the "License");
6   see accompanying file Copyright.txt for details.
7
8   This software is distributed WITHOUT ANY WARRANTY; without even the
9   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10   See the License for more information.
11 ============================================================================*/
12 #ifndef cmPropertyMap_h
13 #define cmPropertyMap_h
14
15 #include "cmProperty.h"
16
17 class cmake;
18
19 class cmPropertyMap : public std::map<cmStdString,cmProperty>
20 {
21 public:
22   cmProperty *GetOrCreateProperty(const char *name);
23
24   void SetProperty(const char *name, const char *value,
25                    cmProperty::ScopeType scope);
26
27   void AppendProperty(const char* name, const char* value,
28                       cmProperty::ScopeType scope, bool asString=false);
29
30   const char *GetPropertyValue(const char *name,
31                                cmProperty::ScopeType scope,
32                                bool &chain) const;
33
34   void SetCMakeInstance(cmake *cm) { this->CMakeInstance = cm; };
35
36   cmPropertyMap() { this->CMakeInstance = 0;};
37
38 private:
39   cmake *CMakeInstance;
40 };
41
42 #endif
43