summaryrefslogtreecommitdiff
path: root/main.cxx
blob: 41b25afceff54d322cbfe050c40056d06573a5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QThread>
#include "networkworker.hxx"

int main(int argc, char* argv[])
{
	QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
	QGuiApplication app(argc, argv);
	QQmlApplicationEngine engine;

	NetworkWorker worker{};
	QThread thread;
	worker.moveToThread(&thread);

	engine.load(QUrl(QStringLiteral("qrc:/main.qml")));

	thread.start();

	return app.exec();
}