| 103 | } |
| 104 | |
| 105 | void ConfigFilePrivate::close() |
| 106 | { |
| 107 | if (_stream.is_open()) { |
| 108 | if (_dirty && !_readonly) { |
| 109 | write(); |
| 110 | } |
| 111 | |
| 112 | _stream.close(); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | const std::string& ConfigFilePrivate::getSettingValue(const std::string& name) const |
| 117 | { |
no outgoing calls
no test coverage detected