2016-09-27 22:01:08 +03: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 21:35:21 +03:00
|
|
|
#ifndef cmPropertyMap_h
|
|
|
|
#define cmPropertyMap_h
|
|
|
|
|
2016-08-24 01:29:15 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
|
|
|
|
2006-12-01 21:35:21 +03:00
|
|
|
#include "cmProperty.h"
|
|
|
|
|
2016-08-24 01:29:15 +03:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
class cmPropertyMap : public std::map<std::string, cmProperty>
|
2006-12-01 21:35:21 +03:00
|
|
|
{
|
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
cmProperty* GetOrCreateProperty(const std::string& name);
|
2006-12-01 21:35:21 +03:00
|
|
|
|
2016-06-10 10:34:14 +03:00
|
|
|
std::vector<std::string> GetPropertyList() const;
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void SetProperty(const std::string& name, const char* value);
|
2006-12-01 21:35:21 +03:00
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
void AppendProperty(const std::string& name, const char* value,
|
2016-05-16 17:34:04 +03:00
|
|
|
bool asString = false);
|
2008-01-18 02:13:55 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* GetPropertyValue(const std::string& name) const;
|
2006-12-01 21:35:21 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|