diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-29 17:50:57 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-29 17:50:57 +0700 |
commit | 933fa1019041966c908967567523e6f972da8186 (patch) | |
tree | 2e8316ef83e479d6b396293e06509771eaecffbf /worker.cxx | |
parent | eeacda8d7edf463738d4527c377bc44e869a02c6 (diff) | |
parent | c8891b50d1f30c7c07bf96f8eaf2e1002ce573b8 (diff) |
Merge branch 'development' of ssh://darapsa.co.id/usr/local/git/kelakon into development
* 'development' of ssh://darapsa.co.id/usr/local/git/kelakon:
Set up a way for the thread to quit
Renamed NetworkWorker to just Worker
Diffstat (limited to 'worker.cxx')
-rw-r--r-- | worker.cxx | 13 |
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(); +} |