| 89 | } |
| 90 | |
| 91 | cmStateEnums::CacheEntryType GetCacheEntryType(std::string const& key) const |
| 92 | { |
| 93 | if (auto const* entry = this->GetCacheEntry(key)) { |
| 94 | return entry->GetType(); |
| 95 | } |
| 96 | return cmStateEnums::UNINITIALIZED; |
| 97 | } |
| 98 | |
| 99 | std::vector<std::string> GetCacheEntryPropertyList( |
| 100 | std::string const& key) const |
nothing calls this directly
no test coverage detected