| 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); } |
| 415 | void ConfigFile::set(const UString &key, const bool value) { this->pimpl->set(key, value); } |
| 416 | void ConfigFile::set(const UString &key, const float value) { this->pimpl->set(key, value); } |
no outgoing calls
no test coverage detected