21 lines
234 B
C++
21 lines
234 B
C++
#ifndef MANAGER_H
|
|
#define MANAGER_H
|
|
|
|
#include <QObject>
|
|
|
|
class Manager : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Manager(QObject *parent = nullptr);
|
|
|
|
|
|
Q_INVOKABLE void trigger();
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // MANAGER_H
|