summaryrefslogtreecommitdiff
path: root/Source/cmCacheManager.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-08-28 14:51:10 -0400
committerKen Martin <ken.martin@kitware.com>2002-08-28 14:51:10 -0400
commitd0be2896d7191e56818aaac48f7177b9d92a9693 (patch)
tree42c3a9c07f1ccd9fe8683051c921463e9d639dc7 /Source/cmCacheManager.h
parent4855fe5c10841fd3641b7405522de3278732987f (diff)
downloadcmake-d0be2896d7191e56818aaac48f7177b9d92a9693.tar.gz
changed cache manager and registered generators to no longer be singletons
Diffstat (limited to 'Source/cmCacheManager.h')
-rw-r--r--Source/cmCacheManager.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmCacheManager.h b/Source/cmCacheManager.h
index dca613fdbb..0e8082253f 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