| 97 | } |
| 98 | |
| 99 | std::vector<std::string> GetCacheEntryPropertyList( |
| 100 | std::string const& key) const |
| 101 | { |
| 102 | if (auto const* entry = this->GetCacheEntry(key)) { |
| 103 | return entry->GetPropertyList(); |
| 104 | } |
| 105 | return {}; |
| 106 | } |
| 107 | |
| 108 | cmValue GetCacheEntryProperty(std::string const& key, |
| 109 | std::string const& propName) const |
nothing calls this directly
no test coverage detected