| 70 | {} |
| 71 | |
| 72 | std::string getKeyValue(const std::string& key) override |
| 73 | { |
| 74 | ensureParsed(); |
| 75 | return _keyValues.count(key) > 0 ? _keyValues.at(key) : ""; |
| 76 | } |
| 77 | |
| 78 | // API method to simulate a change of the declaration contents |
| 79 | void setKeyValue(const std::string& key, const std::string& value) override |