| 406 | bool ConfigFile::get(const UString &key) { return this->pimpl->get(key); } |
| 407 | |
| 408 | UString ConfigFile::describe(const UString §ion, const UString &name) |
| 409 | { |
| 410 | return this->pimpl->describe(section, name); |
| 411 | } |
| 412 | |
| 413 | void ConfigFile::set(const UString &key, const UString value) { this->pimpl->set(key, value); } |
| 414 | void ConfigFile::set(const UString &key, const int value) { this->pimpl->set(key, value); } |
no outgoing calls
no test coverage detected