2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-12-01 21:35:21 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-12-01 21:35:21 +03:00
|
|
|
|
2009-09-28 19: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 21:35:21 +03:00
|
|
|
#ifndef cmPropertyDefinitionMap_h
|
|
|
|
#define cmPropertyDefinitionMap_h
|
|
|
|
|
|
|
|
#include "cmPropertyDefinition.h"
|
|
|
|
|
2007-10-22 20:49:09 +04:00
|
|
|
class cmDocumentationSection;
|
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
class cmPropertyDefinitionMap :
|
2014-02-10 09:21:34 +04:00
|
|
|
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,
|
2006-12-01 21:35:21 +03:00
|
|
|
const char *ShortDescription,
|
|
|
|
const char *FullDescription,
|
|
|
|
bool chain);
|
|
|
|
|
|
|
|
// has a named property been defined
|
2014-02-10 09:21:34 +04:00
|
|
|
bool IsPropertyDefined(const std::string& name);
|
2006-12-01 21:35:21 +03:00
|
|
|
|
|
|
|
// is a named property set to chain
|
2014-02-10 09:21:34 +04:00
|
|
|
bool IsPropertyChained(const std::string& name);
|
2006-12-01 21:35:21 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|