summaryrefslogtreecommitdiffstats
path: root/Source/cmProperty.h
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-06-03 07:26:59 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-06-08 10:25:35 (GMT)
commite0a8ff31480df672e42e2382e8ed7f33ea65afb4 (patch)
treeb7a7b0e3d27d9d7c8d7c84e9f1a7ba4956e1d671 /Source/cmProperty.h
parent8d934d861be8c2a8b43d4c421715fb1e8c0c54fd (diff)
downloadCMake-e0a8ff31480df672e42e2382e8ed7f33ea65afb4.zip
CMake-e0a8ff31480df672e42e2382e8ed7f33ea65afb4.tar.gz
CMake-e0a8ff31480df672e42e2382e8ed7f33ea65afb4.tar.bz2
cmPropertyMap: Use std::string as value container class
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