Files
neochat/matrix/controller.h
2018-02-27 13:10:08 +08:00

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