diff options
Diffstat (limited to 'Source/cmPropertyMap.h')
-rw-r--r-- | Source/cmPropertyMap.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Source/cmPropertyMap.h b/Source/cmPropertyMap.h index a9062db..4e98750 100644 --- a/Source/cmPropertyMap.h +++ b/Source/cmPropertyMap.h @@ -14,18 +14,17 @@ #include "cmProperty.h" -class cmPropertyMap : public std::map<std::string,cmProperty> +class cmPropertyMap : public std::map<std::string, cmProperty> { public: - cmProperty *GetOrCreateProperty(const std::string& name); + cmProperty* GetOrCreateProperty(const std::string& name); - void SetProperty(const std::string& name, const char *value); + void SetProperty(const std::string& name, const char* value); void AppendProperty(const std::string& name, const char* value, - bool asString=false); + bool asString = false); - const char *GetPropertyValue(const std::string& name) const; + const char* GetPropertyValue(const std::string& name) const; }; #endif - |