summaryrefslogtreecommitdiff
path: root/controller.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'controller.hxx')
-rw-r--r--controller.hxx18
1 files changed, 18 insertions, 0 deletions
diff --git a/controller.hxx b/controller.hxx
new file mode 100644
index 0000000..e293ec4
--- /dev/null
+++ b/controller.hxx
@@ -0,0 +1,18 @@
+#ifndef CONTROLLER_HXX
+#define CONTROLLER_HXX
+
+#include <QThread>
+
+class Controller : public QObject
+{
+ Q_OBJECT
+
+ public:
+ Controller();
+ ~Controller();
+
+ private:
+ QThread thread;
+};
+
+#endif // CONTROLLER_HXX