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 cmPropertyMap_h
|
|
|
|
#define cmPropertyMap_h
|
|
|
|
|
|
|
|
#include "cmProperty.h"
|
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
class cmPropertyMap : public std::map<std::string,cmProperty>
|
2006-12-01 21:35:21 +03:00
|
|
|
{
|
|
|
|
public:
|
2013-09-03 00:27:32 +04:00
|
|
|
cmProperty *GetOrCreateProperty(const std::string& name);
|
2006-12-01 21:35:21 +03:00
|
|
|
|
2015-06-06 10:41:15 +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,
|
2015-06-06 10:41:15 +03:00
|
|
|
bool asString=false);
|
2008-01-18 02:13:55 +03:00
|
|
|
|
2015-06-06 10:41:30 +03:00
|
|
|
const char *GetPropertyValue(const std::string& name) const;
|
2006-12-01 21:35:21 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|