#include #include "worker.hxx" #include "controller.hxx" Controller::Controller(QObject* parent) : QObject{parent} { Worker* worker = new Worker{parent}; worker->moveToThread(&thread); connect(&thread, &QThread::finished, worker, &QObject::deleteLater); auto engine = dynamic_cast(parent); auto rootObjects = engine->rootObjects(); auto appWindow = rootObjects[0]; connect(appWindow, SIGNAL(logIn(QString, QString)), worker, SLOT(logIn(QString, QString))); thread.start(); } Controller::~Controller() { thread.quit(); thread.wait(); }