| 458 | } |
| 459 | |
| 460 | bool SoftSetBoolArg(const std::string& strArg, bool fValue) |
| 461 | { |
| 462 | if (fValue) |
| 463 | return SoftSetArg(strArg, std::string("1")); |
| 464 | else |
| 465 | return SoftSetArg(strArg, std::string("0")); |
| 466 | } |
| 467 | |
| 468 | void ForceSetArg(const std::string& strArg, const std::string& strValue) |
| 469 | { |
no test coverage detected