| 398 | ConfigFile::~ConfigFile() = default; |
| 399 | |
| 400 | bool ConfigFile::save() { return this->pimpl->save(); } |
| 401 | |
| 402 | UString ConfigFile::getString(const UString &key) { return this->pimpl->getTyped<UString>(key); } |
| 403 | int ConfigFile::getInt(const UString &key) { return this->pimpl->getTyped<int>(key); } |
no outgoing calls
no test coverage detected