| 480 | } |
| 481 | |
| 482 | std::vector<std::string> ArgsManager::GetArgs(const std::string& strArg) const |
| 483 | { |
| 484 | std::vector<std::string> result; |
| 485 | for (const util::SettingsValue& value : GetSettingsList(strArg)) { |
| 486 | result.push_back(value.isFalse() ? "0" : value.isTrue() ? "1" : value.get_str()); |
| 487 | } |
| 488 | return result; |
| 489 | } |
| 490 | |
| 491 | bool ArgsManager::IsArgSet(const std::string& strArg) const |
| 492 | { |