| 422 | } |
| 423 | |
| 424 | std::vector<std::string> ArgsManager::GetArgs(const std::string& strArg) const |
| 425 | { |
| 426 | std::vector<std::string> result; |
| 427 | for (const common::SettingsValue& value : GetSettingsList(strArg)) { |
| 428 | result.push_back(value.isFalse() ? "0" : value.isTrue() ? "1" : value.get_str()); |
| 429 | } |
| 430 | return result; |
| 431 | } |
| 432 | |
| 433 | bool ArgsManager::IsArgSet(const std::string& strArg) const |
| 434 | { |