| 609 | } |
| 610 | |
| 611 | bool ArgsManager::SoftSetBoolArg(const std::string& strArg, bool fValue) |
| 612 | { |
| 613 | if (fValue) |
| 614 | return SoftSetArg(strArg, std::string("1")); |
| 615 | else |
| 616 | return SoftSetArg(strArg, std::string("0")); |
| 617 | } |
| 618 | |
| 619 | void ArgsManager::ForceSetArg(const std::string& strArg, const std::string& strValue) |
| 620 | { |
no outgoing calls