summaryrefslogtreecommitdiffstats
path: root/Source/cmData.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-04-26 18:20:54 (GMT)
committerBrad King <brad.king@kitware.com>2010-04-26 18:22:51 (GMT)
commit6e1b510319cb60c4820b1e0d882f4a7911aabf53 (patch)
tree01f5da1fe1e87e066989622d5583ae44b1497362 /Source/cmData.h
parent36d850b87eabdcbce00f4139cbc0de58b2c99059 (diff)
downloadCMake-6e1b510319cb60c4820b1e0d882f4a7911aabf53.zip
CMake-6e1b510319cb60c4820b1e0d882f4a7911aabf53.tar.gz
CMake-6e1b510319cb60c4820b1e0d882f4a7911aabf53.tar.bz2
Remove unused cmData and cmMakefile::DataMap
These were implementation details of the unused methods cmMakefile::RegisterData cmMakefile::LookupData We simply remove the methods, members, and class cmData.
Diffstat (limited to 'Source/cmData.h')
-rw-r--r--Source/cmData.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/Source/cmData.h b/Source/cmData.h
deleted file mode 100644
index 3ae32f5..0000000
--- a/Source/cmData.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*============================================================================
- CMake - Cross Platform Makefile Generator
- Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
-
- Distributed under the OSI-approved BSD License (the "License");
- see accompanying file Copyright.txt for details.
-
- 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.
-============================================================================*/
-#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:
- cmData(const char* name): Name(name) {}
- virtual ~cmData() {}
-
- const std::string& GetName() const
- { return this->Name; }
-protected:
- std::string Name;
-};
-
-#endif