summaryrefslogtreecommitdiffstats
path: root/Source/cmPropertyMap.h
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-06-02 10:35:33 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-06-08 10:25:35 (GMT)
commit9e64e617eb295c7e2725d871225659ae7bcf7c48 (patch)
tree5356b70a28cd1ad5de06dcadc035489b6645c529 /Source/cmPropertyMap.h
parentf4bbeb785c8f673a5cff326cc717d0dfbb2734a2 (diff)
downloadCMake-9e64e617eb295c7e2725d871225659ae7bcf7c48.zip
CMake-9e64e617eb295c7e2725d871225659ae7bcf7c48.tar.gz
CMake-9e64e617eb295c7e2725d871225659ae7bcf7c48.tar.bz2
cmPropertyMap: Rename GetPropertyList method to GetKeys
Diffstat (limited to 'Source/cmPropertyMap.h')
-rw-r--r--Source/cmPropertyMap.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmPropertyMap.h b/Source/cmPropertyMap.h
index 5a05150..5c93627 100644
--- a/Source/cmPropertyMap.h
+++ b/Source/cmPropertyMap.h
@@ -14,16 +14,19 @@
class cmPropertyMap : public std::map<std::string, cmProperty>
{
public:
+ // -- Properties
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,
bool asString = false);
const char* GetPropertyValue(const std::string& name) const;
+
+ // -- Lists
+ //! Get a sorted list of property keys
+ std::vector<std::string> GetKeys() const;
};
#endif