| 119 | } |
| 120 | |
| 121 | Any ModuleManifest::GetValue(const std::string& key) const |
| 122 | { |
| 123 | AnyMap::const_iterator iter = m_Properties.find(key); |
| 124 | if (iter != m_Properties.end()) |
| 125 | { |
| 126 | return iter->second; |
| 127 | } |
| 128 | return Any(); |
| 129 | } |
| 130 | |
| 131 | std::vector<std::string> ModuleManifest::GetKeys() const |
| 132 | { |
no test coverage detected