| 601 | } |
| 602 | |
| 603 | bool ArgsManager::SoftSetArg(const std::string& strArg, const std::string& strValue) |
| 604 | { |
| 605 | LOCK(cs_args); |
| 606 | if (IsArgSet(strArg)) return false; |
| 607 | ForceSetArg(strArg, strValue); |
| 608 | return true; |
| 609 | } |
| 610 | |
| 611 | bool ArgsManager::SoftSetBoolArg(const std::string& strArg, bool fValue) |
| 612 | { |
no outgoing calls