QtHPConnect/main.cpp

31 lines
824 B
C++
Raw Normal View History

2019-02-10 15:43:00 +02:00
#include "mainwindow.h"
#include <QApplication>
#include <QCommandLineParser>
#include <QCommandLineOption>
2019-02-10 15:32:15 +02:00
2019-02-10 15:43:00 +02:00
int main(int argc, char *argv[])
2019-02-10 15:32:15 +02:00
{
2019-02-10 15:43:00 +02:00
Q_INIT_RESOURCE(qthpconnect);
2019-02-10 15:32:15 +02:00
2019-02-10 15:43:00 +02:00
QApplication a(argc, argv);
QCoreApplication::setOrganizationName("QtProject");
QCoreApplication::setApplicationName("Linux HP Connect");
QCoreApplication::setApplicationVersion(QT_VERSION_STR);
QCommandLineParser parser;
parser.setApplicationDescription(QCoreApplication::applicationName());
//REWORK
parser.addHelpOption();
parser.addVersionOption();
parser.addPositionalArgument("file", "The file to open.");
parser.process(a);
MainWindow w;
// if (!parser.positionalArguments().isEmpty())
// w.loadFile(parser.positionalArguments().first());
w.show();
return a.exec();
2019-02-10 15:32:15 +02:00
}