| 558 | } |
| 559 | |
| 560 | bool ArgsManager::SoftSetBoolArg(const std::string& strArg, bool fValue) |
| 561 | { |
| 562 | if (fValue) |
| 563 | return SoftSetArg(strArg, std::string("1")); |
| 564 | else |
| 565 | return SoftSetArg(strArg, std::string("0")); |
| 566 | } |
| 567 | |
| 568 | void ArgsManager::ForceSetArg(const std::string& strArg, const std::string& strValue) |
| 569 | { |
no outgoing calls
no test coverage detected