summaryrefslogtreecommitdiff
path: root/controller.hxx
blob: 5d4ef8993ab7c1e83003f5f8224c4b9ef4bb9ae5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef CONTROLLER_HXX
#define CONTROLLER_HXX

#include <QThread>

class Controller : public QObject
{
	Q_OBJECT

	public:
		Controller(QObject* parent = nullptr);
		~Controller();

	private:
		QThread thread;
		class TaskList* taskList;
};

#endif // CONTROLLER_HXX