#include "threadwitheventloop.h" #include ThreadWithEventLoop::ThreadWithEventLoop(QObject* parent) : QThread(parent) { } ThreadWithEventLoop::~ThreadWithEventLoop() { } void ThreadWithEventLoop::run() { exec(); }