Init controller.
This commit is contained in:
6
matrix/controller.cpp
Normal file
6
matrix/controller.cpp
Normal file
@@ -0,0 +1,6 @@
|
||||
#include "controller.h"
|
||||
|
||||
Controller::Controller(QObject *parent) : QObject(parent)
|
||||
{
|
||||
|
||||
}
|
||||
17
matrix/controller.h
Normal file
17
matrix/controller.h
Normal 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
|
||||
Reference in New Issue
Block a user