27 lines
672 B
C++
27 lines
672 B
C++
|
#include <QGuiApplication>
|
||
|
#include <QQmlApplicationEngine>
|
||
|
|
||
|
#include "omobidisplaybackend.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
||
|
|
||
|
QGuiApplication app(argc, argv);
|
||
|
|
||
|
OmobiDisplayBackend b;
|
||
|
b.startScanning();
|
||
|
|
||
|
/*
|
||
|
QQmlApplicationEngine engine;
|
||
|
const QUrl url(QStringLiteral("qrc:/main.qml"));
|
||
|
QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
|
||
|
&app, [url](QObject *obj, const QUrl &objUrl) {
|
||
|
if (!obj && url == objUrl)
|
||
|
QCoreApplication::exit(-1);
|
||
|
}, Qt::QueuedConnection);
|
||
|
engine.load(url);
|
||
|
*/
|
||
|
return app.exec();
|
||
|
}
|