Initial commit
This commit is contained in:
23
main.cpp
Normal file
23
main.cpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#include "videoplayer.h"
|
||||
|
||||
#include <QApplication>
|
||||
#include <QCommandLineParser>
|
||||
#include <QCommandLineOption>
|
||||
#include <QDir>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
|
||||
QCoreApplication::setApplicationName("XTrack-NG core POC");
|
||||
QCommandLineParser parser;
|
||||
parser.setApplicationDescription("XTrack-NG core POC");
|
||||
parser.addHelpOption();
|
||||
parser.process(app);
|
||||
|
||||
VideoPlayer player;
|
||||
|
||||
player.show();
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
Reference in New Issue
Block a user