2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-05-16 17:19:46 +04: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.
|
2001-05-16 17:19:46 +04: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.
|
|
|
|
============================================================================*/
|
2001-05-16 17:19:46 +04:00
|
|
|
#ifndef cmData_h
|
|
|
|
#define cmData_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
|
|
|
/** \class cmData
|
|
|
|
* \brief Hold extra data on a cmMakefile instance for a command.
|
|
|
|
*
|
|
|
|
* When CMake commands need to store extra information in a cmMakefile
|
|
|
|
* instance, but the information is not needed by the makefile generators,
|
|
|
|
* it can be held in a subclass of cmData. The cmMakefile class has a map
|
|
|
|
* from std::string to cmData*. On its destruction, it destroys all the
|
|
|
|
* extra data through the virtual destructor of cmData.
|
|
|
|
*/
|
|
|
|
class cmData
|
|
|
|
{
|
|
|
|
public:
|
2006-03-16 17:33:23 +03:00
|
|
|
cmData(const char* name): Name(name) {}
|
2001-05-16 17:19:46 +04:00
|
|
|
virtual ~cmData() {}
|
|
|
|
|
|
|
|
const std::string& GetName() const
|
2006-03-16 17:33:23 +03:00
|
|
|
{ return this->Name; }
|
2001-05-16 17:19:46 +04:00
|
|
|
protected:
|
2006-03-16 17:33:23 +03:00
|
|
|
std::string Name;
|
2001-05-16 17:19:46 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|