summaryrefslogtreecommitdiff
path: root/worker.cxx
blob: 8c915f811ecb16698cd8da0776bb78d9d83fe8c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "rtclient.h"
#include "worker.hxx"

Worker::Worker(QObject* parent) :
	QObject{parent}
{
	rtclient_init();
}

Worker::~Worker()
{
	rtclient_cleanup();
}