| Revision: | 1073 |
| Committed: | Thu Oct 5 17:48:32 2017 UTC (8 years ago) by s10k |
| Content type: | text/x-c++src |
| File size: | 382 byte(s) |
| Log Message: | added XML Tools latest version (2.0d) and s10k's common libs |
| # | Content |
|---|---|
| 1 | #include "main.h" |
| 2 | |
| 3 | int main(int argc, char *argv[]) |
| 4 | { |
| 5 | |
| 6 | QCoreApplication app(argc, argv); |
| 7 | |
| 8 | // Set application parameters |
| 9 | QCoreApplication::setApplicationName(GlobalVars::AppName); |
| 10 | QCoreApplication::setApplicationVersion(GlobalVars::AppVersion); |
| 11 | |
| 12 | OptionsParser myParser(app.arguments()); |
| 13 | myParser.parse(); |
| 14 | |
| 15 | //app.exec(); |
| 16 | |
| 17 | return 0; |
| 18 | } |