SIEdit/app/main.cpp

25 lines
535 B
C++
Raw Normal View History

2022-06-23 21:36:00 -04:00
#include "mainwindow.h"
#include <QApplication>
#include <QCommandLineParser>
2022-06-23 21:36:00 -04:00
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
2022-06-23 21:36:00 -04:00
MainWindow w;
QCommandLineParser parser;
parser.addPositionalArgument(QCoreApplication::translate("main", "file"),
QCoreApplication::translate("main", "The file to open on startup."));
parser.process(a);
if (!parser.positionalArguments().empty()) {
w.OpenFilename(parser.positionalArguments().first());
}
2022-06-23 21:36:00 -04:00
w.show();
return a.exec();
}