| 198 | } |
| 199 | |
| 200 | Any |
| 201 | BundleManifest::GetValue(std::string const& key) const |
| 202 | { |
| 203 | auto iter = m_Headers.find(key); |
| 204 | if (m_Headers.cend() != iter) |
| 205 | { |
| 206 | return iter->second; |
| 207 | } |
| 208 | return Any(); |
| 209 | } |
| 210 | |
| 211 | void |
| 212 | BundleManifest::CopyDeprecatedProperties() const |
no test coverage detected