| 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); } |
| 404 | bool ConfigFile::getBool(const UString &key) { return this->pimpl->getTyped<bool>(key); } |
| 405 | float ConfigFile::getFloat(const UString &key) { return this->pimpl->getTyped<float>(key); } |