summaryrefslogtreecommitdiffstats
path: root/Source/cmProperty.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-06-12 16:45:55 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-06-12 16:46:18 (GMT)
commitc1580ecc13cf2dea3f047d1018e705bd34cecc53 (patch)
treeb157b069e557867bcc344bb4520d2e5ab2670279 /Source/cmProperty.h
parent1af08229a7b871ea592cdf6d2aa41e47787eb713 (diff)
parent00d265e3c812516e2a71faed4f352b36f51112e2 (diff)
downloadCMake-c1580ecc13cf2dea3f047d1018e705bd34cecc53.zip
CMake-c1580ecc13cf2dea3f047d1018e705bd34cecc53.tar.gz
CMake-c1580ecc13cf2dea3f047d1018e705bd34cecc53.tar.bz2
Merge topic 'cmPropertyMap_unordered_map'
00d265e3c8 cmPropertyMap: Use std::unordered_map as container instead of std::map 1b945f95ba cmPropertyMap: Add RemoveProperty method e0a8ff3148 cmPropertyMap: Use std::string as value container class 8d934d861b cmPropertyMap: Make std::map container private 026f65d284 cmPropertyMap: Add GetList method 9e64e617eb cmPropertyMap: Rename GetPropertyList method to GetKeys Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3435
Diffstat (limited to 'Source/cmProperty.h')
-rw-r--r--Source/cmProperty.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/Source/cmProperty.h b/Source/cmProperty.h
index d11c5ef..80f131a 100644
--- a/Source/cmProperty.h
+++ b/Source/cmProperty.h
@@ -5,8 +5,6 @@
#include "cmConfigure.h" // IWYU pragma: keep
-#include <string>
-
class cmProperty
{
public:
@@ -22,22 +20,6 @@ public:
CACHED_VARIABLE,
INSTALL
};
-
- // set this property
- void Set(const char* value);
-
- // append to this property
- void Append(const char* value, bool asString = false);
-
- // get the value
- const char* GetValue() const;
-
- // construct with the value not set
- cmProperty() { this->ValueHasBeenSet = false; }
-
-protected:
- std::string Value;
- bool ValueHasBeenSet;
};
#endif