diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-08-28 18:51:10 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-08-28 18:51:10 (GMT) |
commit | d0be2896d7191e56818aaac48f7177b9d92a9693 (patch) | |
tree | 42c3a9c07f1ccd9fe8683051c921463e9d639dc7 /Source/cmCacheManager.h | |
parent | 4855fe5c10841fd3641b7405522de3278732987f (diff) | |
download | CMake-d0be2896d7191e56818aaac48f7177b9d92a9693.zip CMake-d0be2896d7191e56818aaac48f7177b9d92a9693.tar.gz CMake-d0be2896d7191e56818aaac48f7177b9d92a9693.tar.bz2 |
changed cache manager and registered generators to no longer be singletons
Diffstat (limited to 'Source/cmCacheManager.h')
-rw-r--r-- | Source/cmCacheManager.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmCacheManager.h b/Source/cmCacheManager.h index dca613f..0e80822 100644 --- a/Source/cmCacheManager.h +++ b/Source/cmCacheManager.h @@ -69,9 +69,6 @@ public: * can be different than just a path input */ static CacheEntryType StringToType(const char*); - ///! Singleton pattern get instance of the cmCacheManager. - static cmCacheManager* GetInstance(); - static void DeleteInstance(); ///! Load a cache for given makefile. Loads from ouput home. bool LoadCache(cmMakefile*); @@ -122,7 +119,6 @@ protected: private: static void OutputHelpString(std::ofstream& fout, const std::string& helpString); - static cmCacheManager* s_Instance; CacheEntryMap m_Cache; // Only cmake and cmMakefile should be able to add cache values // the commands should never use the cmCacheManager directly |