| 43 | } |
| 44 | |
| 45 | cmValue cmPropertyMap::GetPropertyValue(std::string const& name) const |
| 46 | { |
| 47 | auto it = this->Map_.find(name); |
| 48 | if (it != this->Map_.end()) { |
| 49 | return cmValue(it->second); |
| 50 | } |
| 51 | return nullptr; |
| 52 | } |
| 53 | |
| 54 | std::vector<std::string> cmPropertyMap::GetKeys() const |
| 55 | { |