24 lines
475 B
C++
24 lines
475 B
C++
#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();
|
|
}
|