17 lines
223 B
C++
17 lines
223 B
C++
#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
|