| 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 | |
| 408 | UString ConfigFile::describe(const UString §ion, const UString &name) |
| 409 | { |
no test coverage detected