| 120 | } |
| 121 | |
| 122 | void ConfigFilePrivate::setSettingValue(const std::string& name, std::string& value) |
| 123 | { |
| 124 | NVPair& setting = _settings.at(name); |
| 125 | setting.value = value; |
| 126 | _dirty = true; |
| 127 | } |
| 128 | |
| 129 | bool ConfigFilePrivate::hasSettingValue(const std::string& name) const |
| 130 | { |
nothing calls this directly
no outgoing calls
no test coverage detected