diff options
Diffstat (limited to 'controller.hxx')
| -rw-r--r-- | controller.hxx | 18 | 
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 |