summaryrefslogtreecommitdiff
path: root/main.cxx
blob: 0108135db4b3a95b4eeb21dc38f770d967eca650 (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;

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

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

	thread.start();

	return app.exec();
}