summaryrefslogtreecommitdiffstats
path: root/Source/cmPropertyMap.h
diff options
context:
space:
mode:
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);