| Revision: | 1073 |
| Committed: | Thu Oct 5 17:48:32 2017 UTC (8 years ago) by s10k |
| Content type: | text/x-chdr |
| File size: | 297 byte(s) |
| Log Message: | added XML Tools latest version (2.0d) and s10k's common libs |
| # | Content |
|---|---|
| 1 | #ifndef OPTIONSPARSER_H |
| 2 | #define OPTIONSPARSER_H |
| 3 | |
| 4 | #include "xmlpatch.h" |
| 5 | |
| 6 | #include <QCommandLineOption> |
| 7 | #include <QCommandLineParser> |
| 8 | |
| 9 | class OptionsParser |
| 10 | { |
| 11 | public: |
| 12 | OptionsParser(QStringList args); |
| 13 | void parse(); |
| 14 | private: |
| 15 | QStringList args; |
| 16 | }; |
| 17 | |
| 18 | #endif // OPTIONSPARSER_H |