diff options
author | Tobias Hunger <tobias.hunger@qt.io> | 2016-06-10 07:34:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-06-10 13:33:02 (GMT) |
commit | 120899c6980fcd81aa2a0d7b733ae15332a7a133 (patch) | |
tree | dd7876776937bb8d61fadff3d7c3844178b0f979 /Source/cmPropertyMap.h | |
parent | 7066218e792927cb6494ce73e834b8ddb3d275e6 (diff) | |
download | CMake-120899c6980fcd81aa2a0d7b733ae15332a7a133.zip CMake-120899c6980fcd81aa2a0d7b733ae15332a7a133.tar.gz CMake-120899c6980fcd81aa2a0d7b733ae15332a7a133.tar.bz2 |
cmPropertyList: Add a way to retrieve all properties
Diffstat (limited to 'Source/cmPropertyMap.h')
-rw-r--r-- | Source/cmPropertyMap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmPropertyMap.h b/Source/cmPropertyMap.h index 4e98750..6dc7bfb 100644 --- a/Source/cmPropertyMap.h +++ b/Source/cmPropertyMap.h @@ -19,6 +19,8 @@ class cmPropertyMap : public std::map<std::string, cmProperty> public: cmProperty* GetOrCreateProperty(const std::string& name); + std::vector<std::string> GetPropertyList() const; + void SetProperty(const std::string& name, const char* value); void AppendProperty(const std::string& name, const char* value, |