mirror of
https://github.com/isledecomp/SIEdit.git
synced 2024-11-23 15:48:03 -05:00
24 lines
535 B
C++
24 lines
535 B
C++
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
#include <QCommandLineParser>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
|
|
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());
|
|
}
|
|
|
|
w.show();
|
|
return a.exec();
|
|
}
|