diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-04-29 14:02:53 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-04-29 14:02:53 (GMT) |
commit | 42db1870120481bbd75dd1b056bc7909c2da9232 (patch) | |
tree | 23e1236ffb563c16b1a27096d8662b79c0e61d04 /Source/cmCacheManager.cxx | |
parent | aae914bdd21af81739594bb94e935181925872a1 (diff) | |
download | CMake-42db1870120481bbd75dd1b056bc7909c2da9232.zip CMake-42db1870120481bbd75dd1b056bc7909c2da9232.tar.gz CMake-42db1870120481bbd75dd1b056bc7909c2da9232.tar.bz2 |
ENH: Add method to convert from CacheEntryType to string
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r-- | Source/cmCacheManager.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx index 7b213a0..43027e9 100644 --- a/Source/cmCacheManager.cxx +++ b/Source/cmCacheManager.cxx @@ -37,6 +37,15 @@ const char* cmCacheManagerTypes[] = 0 }; +const char* cmCacheManager::TypeToString(cmCacheManager::CacheEntryType type) +{ + if ( type > 6 || type < 0 ) + { + return cmCacheManagerTypes[6]; + } + return cmCacheManagerTypes[type]; +} + cmCacheManager::CacheEntryType cmCacheManager::StringToType(const char* s) { int i = 0; |