| 15 | } |
| 16 | |
| 17 | std::string Bundle::getString(const std::string& key) const { |
| 18 | return this->entries.find(key)->second.value_string; |
| 19 | } |
| 20 | |
| 21 | bool Bundle::hasBool(const std::string& key) const { |
| 22 | auto entry = this->entries.find(key); |
no outgoing calls
no test coverage detected