| 1354 | } |
| 1355 | |
| 1356 | bool parseHelp(Arguments& arguments) |
| 1357 | { |
| 1358 | bool helpLong{false}; |
| 1359 | bool helpShort{false}; |
| 1360 | getAndDelOption(arguments, "--help", helpLong); |
| 1361 | getAndDelOption(arguments, "-h", helpShort); |
| 1362 | return helpLong || helpShort; |
| 1363 | } |
| 1364 | |
| 1365 | void AllOptions::parse(Arguments& arguments) |
| 1366 | { |
no test coverage detected