Developer Documentation
Loading...
Searching...
No Matches
CommandLineParser.hh
1
2#include <QCommandLineParser>
3
4enum CommandLineParseResult
5{
6 CommandLineOk,
7 CommandLineError,
8 CommandLineVersionRequested,
9 CommandLineHelpRequested
10};
11
12static bool openPolyMeshes = false;
13static bool remoteControl = false;
14
15// Parse all options
16CommandLineParseResult parseCommandLine(QCommandLineParser &parser, QString *errorMessage);