| 402 | } |
| 403 | |
| 404 | bool SoftSetBoolArg(const std::string& strArg, bool fValue) |
| 405 | { |
| 406 | if (fValue) |
| 407 | return SoftSetArg(strArg, std::string("1")); |
| 408 | else |
| 409 | return SoftSetArg(strArg, std::string("0")); |
| 410 | } |
| 411 | |
| 412 | static const int screenWidth = 79; |
| 413 | static const int optIndent = 2; |
no test coverage detected