summaryrefslogtreecommitdiffstats
path: root/Source/cmPropertyMap.h
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@gmail.com>2021-09-21 15:12:35 (GMT)
committerMarc Chevrier <marc.chevrier@gmail.com>2021-09-21 15:14:04 (GMT)
commitcc56dc7468bfee49dedbf395d6fca5c372d200fe (patch)
treec4463a4dcdada55ca57cba3713fea88d8d2f3f57 /Source/cmPropertyMap.h
parent62834c07603e82aafabc082bbbcf74179a4cda27 (diff)
downloadCMake-cc56dc7468bfee49dedbf395d6fca5c372d200fe.zip
CMake-cc56dc7468bfee49dedbf395d6fca5c372d200fe.tar.gz
CMake-cc56dc7468bfee49dedbf395d6fca5c372d200fe.tar.bz2
Rename cmProp in cmValue
Diffstat (limited to 'Source/cmPropertyMap.h')
-rw-r--r--Source/cmPropertyMap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmPropertyMap.h b/Source/cmPropertyMap.h
index b28d3c9..f50b65e 100644
--- a/Source/cmPropertyMap.h
+++ b/Source/cmPropertyMap.h
@@ -9,7 +9,7 @@
#include <utility>
#include <vector>
-#include "cmProperty.h"
+#include "cmValue.h"
/** \class cmPropertyMap
* \brief String property map.
@@ -26,10 +26,10 @@ public:
//! Set the property value
void SetProperty(const std::string& name, const char* value);
- void SetProperty(const std::string& name, cmProp value);
+ void SetProperty(const std::string& name, cmValue value);
void SetProperty(const std::string& name, const std::string& value)
{
- this->SetProperty(name, cmProp(value));
+ this->SetProperty(name, cmValue(value));
}
//! Append to the property value
@@ -37,7 +37,7 @@ public:
bool asString = false);
//! Get the property value
- cmProp GetPropertyValue(const std::string& name) const;
+ cmValue GetPropertyValue(const std::string& name) const;
//! Remove the property @a name from the map
void RemoveProperty(const std::string& name);