| 619 | } |
| 620 | |
| 621 | bool ArgsManager::SoftSetBoolArg(const std::string& strArg, bool fValue) |
| 622 | { |
| 623 | if (fValue) |
| 624 | return SoftSetArg(strArg, std::string("1")); |
| 625 | else |
| 626 | return SoftSetArg(strArg, std::string("0")); |
| 627 | } |
| 628 | |
| 629 | void ArgsManager::ForceSetArg(const std::string& strArg, const std::string& strValue) |
| 630 | { |
no outgoing calls
no test coverage detected