diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-14 14:53:13 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-14 14:53:13 (GMT) |
commit | 5147742a8364fabb22bf4d5d7d9c86db3ed35cad (patch) | |
tree | 1d527830d241ef9016ea39ca2760adbe93f6f325 /Source/cmMakefile.h | |
parent | 587b06788071e818823aabb5e31ef283f9278506 (diff) | |
download | CMake-5147742a8364fabb22bf4d5d7d9c86db3ed35cad.zip CMake-5147742a8364fabb22bf4d5d7d9c86db3ed35cad.tar.gz CMake-5147742a8364fabb22bf4d5d7d9c86db3ed35cad.tar.bz2 |
Make GetCMakeInstance private and clean cxx file
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 558066b..e0cf827 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -31,6 +31,7 @@ class cmLocalGenerator; class cmMakeDepend; class cmSourceFile; class cmVariableWatch; +class cmake; /** \class cmMakefile * \brief Process the input CMakeLists.txt file. @@ -532,7 +533,6 @@ public: * given a current CMakeLists file name */ cmCacheManager *GetCacheManager() const; - cmake *GetCMakeInstance() const; cmVariableWatch* GetVariableWatch() const; //! Determine wether this is a local or global build. @@ -608,7 +608,12 @@ private: void PrintStringVector(const char* s, const std::vector<std::string>& v) const; void AddDefaultDefinitions(); std::list<cmFunctionBlocker *> m_FunctionBlockers; - + + /** + * Get the instance + */ + cmake *GetCMakeInstance() const; + typedef std::map<cmStdString, cmData*> DataMap; DataMap m_DataMap; bool m_Inheriting; |