| 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); } |
| 406 | bool ConfigFile::get(const UString &key) { return this->pimpl->get(key); } |
| 407 |
no outgoing calls
no test coverage detected