Init controller.

This commit is contained in:
Black Hat
2018-02-27 13:10:08 +08:00
committed by Black Hat
parent 0c1068c619
commit 6d34f1042f
3 changed files with 28 additions and 1 deletions

17
matrix/controller.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef CONTROLLER_H
#define CONTROLLER_H
#include <QObject>
class Controller : public QObject
{
Q_OBJECT
public:
explicit Controller(QObject *parent = nullptr);
signals:
public slots:
};
#endif // CONTROLLER_H