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.hxx | |
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.hxx')
-rw-r--r-- | worker.hxx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/worker.hxx b/worker.hxx new file mode 100644 index 0000000..cdb2811 --- /dev/null +++ b/worker.hxx @@ -0,0 +1,14 @@ +#ifndef WORKER_HXX +#define WORKER_HXX + +#include <QObject> + +class Worker : public QObject +{ + Q_OBJECT + public: + explicit Worker(QObject* parent = nullptr); + virtual ~Worker(); +}; + +#endif // WORKER_HXX |