ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/XmlTools2/trunk/optionsparser.h
Revision: 964
Committed: Mon Feb 24 15:36:44 2014 UTC (11 years, 7 months ago) by s10k
Content type: text/x-chdr
File size: 297 byte(s)
Log Message:
XmlTools 
More speedup, about 3 times faster now than the current AEI build

File Contents

# 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