2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-12-01 13:35:21 -05:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-12-01 13:35:21 -05:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2006-12-01 13:35:21 -05:00
|
|
|
#ifndef cmPropertyDefinitionMap_h
|
|
|
|
#define cmPropertyDefinitionMap_h
|
|
|
|
|
2016-08-24 00:29:15 +02:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
|
|
|
|
|
|
|
#include "cmProperty.h"
|
2006-12-01 13:35:21 -05:00
|
|
|
#include "cmPropertyDefinition.h"
|
|
|
|
|
2016-08-24 00:29:15 +02:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
2007-10-22 12:49:09 -04:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
class cmPropertyDefinitionMap
|
|
|
|
: public std::map<std::string, cmPropertyDefinition>
|
2006-12-01 13:35:21 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// define the property
|
2014-02-10 00:21:34 -05:00
|
|
|
void DefineProperty(const std::string& name, cmProperty::ScopeType scope,
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* ShortDescription,
|
|
|
|
const char* FullDescription, bool chain);
|
2006-12-01 13:35:21 -05:00
|
|
|
|
|
|
|
// has a named property been defined
|
2015-06-06 09:46:38 +02:00
|
|
|
bool IsPropertyDefined(const std::string& name) const;
|
2006-12-01 13:35:21 -05:00
|
|
|
|
|
|
|
// is a named property set to chain
|
2015-06-06 09:46:38 +02:00
|
|
|
bool IsPropertyChained(const std::string& name) const;
|
2006-12-01 13:35:21 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|