diff options
Diffstat (limited to 'Source/cmTest.h')
-rw-r--r-- | Source/cmTest.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmTest.h b/Source/cmTest.h index a790501..85978da 100644 --- a/Source/cmTest.h +++ b/Source/cmTest.h @@ -8,8 +8,8 @@ #include <vector> #include "cmListFileCache.h" -#include "cmProperty.h" #include "cmPropertyMap.h" +#include "cmValue.h" class cmMakefile; @@ -35,14 +35,14 @@ public: //! Set/Get a property of this source file void SetProperty(const std::string& prop, const char* value); - void SetProperty(const std::string& prop, cmProp value); + void SetProperty(const std::string& prop, cmValue value); void SetProperty(const std::string& prop, const std::string& value) { - this->SetProperty(prop, cmProp(value)); + this->SetProperty(prop, cmValue(value)); } void AppendProperty(const std::string& prop, const std::string& value, bool asString = false); - cmProp GetProperty(const std::string& prop) const; + cmValue GetProperty(const std::string& prop) const; bool GetPropertyAsBool(const std::string& prop) const; cmPropertyMap& GetProperties() { return this->Properties; } |