summaryrefslogtreecommitdiff
path: root/worker.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'worker.hxx')
-rw-r--r--worker.hxx14
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