| 450 | } |
| 451 | |
| 452 | bool SoftSetArg(const std::string& strArg, const std::string& strValue) |
| 453 | { |
| 454 | if (mapArgs.count(strArg)) |
| 455 | return false; |
| 456 | mapArgs[strArg] = strValue; |
| 457 | return true; |
| 458 | } |
| 459 | |
| 460 | bool SoftSetBoolArg(const std::string& strArg, bool fValue) |
| 461 | { |
no test coverage detected