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 cmPropertyDefinitionMap_h
|
|
|
|
#define cmPropertyDefinitionMap_h
|
|
|
|
|
2016-08-24 01:29:15 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
|
|
|
|
|
|
|
#include "cmProperty.h"
|
2006-12-01 21:35:21 +03:00
|
|
|
#include "cmPropertyDefinition.h"
|
|
|
|
|
2016-08-24 01:29:15 +03:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
2007-10-22 20:49:09 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
class cmPropertyDefinitionMap
|
|
|
|
: public std::map<std::string, cmPropertyDefinition>
|
2006-12-01 21:35:21 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// define the property
|
2014-02-10 09:21:34 +04:00
|
|
|
void DefineProperty(const std::string& name, cmProperty::ScopeType scope,
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* ShortDescription,
|
|
|
|
const char* FullDescription, bool chain);
|
2006-12-01 21:35:21 +03:00
|
|
|
|
|
|
|
// has a named property been defined
|
2015-06-06 10:46:38 +03:00
|
|
|
bool IsPropertyDefined(const std::string& name) const;
|
2006-12-01 21:35:21 +03:00
|
|
|
|
|
|
|
// is a named property set to chain
|
2015-06-06 10:46:38 +03:00
|
|
|
bool IsPropertyChained(const std::string& name) const;
|
2006-12-01 21:35:21 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|