2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2006-12-01 13:35:21 -05:00
|
|
|
#ifndef cmPropertyMap_h
|
|
|
|
#define cmPropertyMap_h
|
|
|
|
|
2016-08-24 00:29:15 +02:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
|
|
|
|
2006-12-01 13:35:21 -05:00
|
|
|
#include "cmProperty.h"
|
|
|
|
|
2016-08-24 00:29:15 +02:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
class cmPropertyMap : public std::map<std::string, cmProperty>
|
2006-12-01 13:35:21 -05:00
|
|
|
{
|
|
|
|
public:
|
2016-05-16 10:34:04 -04:00
|
|
|
cmProperty* GetOrCreateProperty(const std::string& name);
|
2006-12-01 13:35:21 -05:00
|
|
|
|
2016-06-10 09:34:14 +02:00
|
|
|
std::vector<std::string> GetPropertyList() const;
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
void SetProperty(const std::string& name, const char* value);
|
2006-12-01 13:35:21 -05:00
|
|
|
|
2013-09-02 16:27:32 -04:00
|
|
|
void AppendProperty(const std::string& name, const char* value,
|
2016-05-16 10:34:04 -04:00
|
|
|
bool asString = false);
|
2008-01-17 18:13:55 -05:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* GetPropertyValue(const std::string& name) const;
|
2006-12-01 13:35:21 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|