| 460 | void ConfigFile::showHelp() { this->pimpl->showHelp(); } |
| 461 | |
| 462 | std::map<UString, std::vector<ConfigOption>> ConfigFile::getOptions() |
| 463 | { |
| 464 | return this->pimpl->getOptions(); |
| 465 | } |
| 466 | |
| 467 | ConfigOption::ConfigOption(const UString section, const UString name, const UString description) |
| 468 | : section(section), name(name), description(description) |