| 411 | } |
| 412 | |
| 413 | std::string GetArg(const std::string& strArg, const std::string& strDefault) |
| 414 | { |
| 415 | if (mapArgs.count(strArg)) |
| 416 | return mapArgs[strArg]; |
| 417 | return strDefault; |
| 418 | } |
| 419 | |
| 420 | int64_t GetArg(const std::string& strArg, int64_t nDefault) |
| 421 | { |