| 550 | } |
| 551 | |
| 552 | bool ArgsManager::SoftSetArg(const std::string& strArg, const std::string& strValue) |
| 553 | { |
| 554 | LOCK(cs_args); |
| 555 | if (IsArgSet(strArg)) return false; |
| 556 | ForceSetArg(strArg, strValue); |
| 557 | return true; |
| 558 | } |
| 559 | |
| 560 | bool ArgsManager::SoftSetBoolArg(const std::string& strArg, bool fValue) |
| 561 | { |
no outgoing calls