summaryrefslogtreecommitdiff
path: root/worker.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'worker.cxx')
-rw-r--r--worker.cxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/worker.cxx b/worker.cxx
new file mode 100644
index 0000000..8c915f8
--- /dev/null
+++ b/worker.cxx
@@ -0,0 +1,13 @@
+#include "rtclient.h"
+#include "worker.hxx"
+
+Worker::Worker(QObject* parent) :
+ QObject{parent}
+{
+ rtclient_init();
+}
+
+Worker::~Worker()
+{
+ rtclient_cleanup();
+}