diff options
author | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-23 15:36:18 +0800 |
---|---|---|
committer | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-23 15:36:18 +0800 |
commit | f14878b05ee885f1747feab256011b4da72ae778 (patch) | |
tree | e9415590ecccaa1fe30b20a49f418990d650302f /main.cxx | |
parent | c592064dda137e81cee7a421bb68fa83535542bd (diff) |
Started to use cURL
Diffstat (limited to 'main.cxx')
-rw-r--r-- | main.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1,11 +1,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(); } |