| 394 | } |
| 395 | |
| 396 | bool SoftSetArg(const std::string& strArg, const std::string& strValue) |
| 397 | { |
| 398 | if (mapArgs.count(strArg)) |
| 399 | return false; |
| 400 | mapArgs[strArg] = strValue; |
| 401 | return true; |
| 402 | } |
| 403 | |
| 404 | bool SoftSetBoolArg(const std::string& strArg, bool fValue) |
| 405 | { |
no test coverage detected