summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-02-16 20:34:09 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-02-16 20:34:09 (GMT)
commitf08fc5ae669a630496e3e0095033cae751a042f1 (patch)
tree3e501d94de24b308c478b936623bfe40a87a13ee
parentbf3ecf8b62ff1a2759117607babad8d4ff4ed2f2 (diff)
downloadCMake-f08fc5ae669a630496e3e0095033cae751a042f1.zip
CMake-f08fc5ae669a630496e3e0095033cae751a042f1.tar.gz
CMake-f08fc5ae669a630496e3e0095033cae751a042f1.tar.bz2
ENH: clean up comments some
-rw-r--r--Source/cmCacheManager.h21
1 files changed, 6 insertions, 15 deletions
diff --git a/Source/cmCacheManager.h b/Source/cmCacheManager.h
index 580f40f..1806cc3 100644
--- a/Source/cmCacheManager.h
+++ b/Source/cmCacheManager.h
@@ -35,28 +35,19 @@ public:
*/
enum CacheEntryType{ BOOL=0, PATH, STRING };
static CacheEntryType StringToType(const char*);
- /**
- * Singleton pattern get instance of the cmCacheManager.
- */
+ //! Singleton pattern get instance of the cmCacheManager.
static cmCacheManager* GetInstance();
- /**
- * Load a cache from file
- */
+
+ //! Load a cache from file
bool LoadCache(const char* path);
- /**
- * Save the cache to a file
- */
+ //! Save the cache to a file
bool SaveCache(const char* path);
- /**
- * Add an entry into the cache
- */
+ //! Add an entry into the cache
void AddCacheEntry(const char* key, const char* value, CacheEntryType type);
- /**
- * Get a value from the cache given a key
- */
+ //! Get a value from the cache given a key
const char* GetCacheValue(const char* key);
private:
static cmCacheManager* s_Instance;