| 106 | } |
| 107 | |
| 108 | cmValue GetCacheEntryProperty(std::string const& key, |
| 109 | std::string const& propName) const |
| 110 | { |
| 111 | if (auto const* entry = this->GetCacheEntry(key)) { |
| 112 | return entry->GetProperty(propName); |
| 113 | } |
| 114 | return nullptr; |
| 115 | } |
| 116 | |
| 117 | bool GetCacheEntryPropertyAsBool(std::string const& key, |
| 118 | std::string const& propName) const |
nothing calls this directly
no test coverage detected