This commit is contained in:
2019-02-20 14:57:54 +01:00
parent 3a0b3d59ce
commit bd4df296b0
8 changed files with 452 additions and 0 deletions

20
manager.h Normal file
View File

@@ -0,0 +1,20 @@
#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