| 39 | } |
| 40 | |
| 41 | bool CliRemoteController::isAnyArgumentSet(QCommandLineParser &parser) const |
| 42 | { |
| 43 | for(auto* opt : _options) { |
| 44 | if(parser.isSet(*opt)) |
| 45 | return true; |
| 46 | } |
| 47 | return false; |
| 48 | } |
| 49 | |
| 50 | bool CliRemoteController::execute(QCommandLineParser &parser) |
| 51 | { |