API method to simulate a change of the declaration contents
| 77 | |
| 78 | // API method to simulate a change of the declaration contents |
| 79 | void setKeyValue(const std::string& key, const std::string& value) override |
| 80 | { |
| 81 | _keyValues[key] = value; |
| 82 | onParsedContentsChanged(); |
| 83 | } |
| 84 | |
| 85 | void foreachKeyValue(std::function<void(std::pair<std::string, std::string>)> functor) override |
| 86 | { |
no outgoing calls