diff options
Diffstat (limited to 'mobile-widgets/statsmanager.h')
-rw-r--r-- | mobile-widgets/statsmanager.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mobile-widgets/statsmanager.h b/mobile-widgets/statsmanager.h new file mode 100644 index 000000000..3cae244c0 --- /dev/null +++ b/mobile-widgets/statsmanager.h @@ -0,0 +1,20 @@ +// SPDX-License-Identifier: GPL-2.0 +#ifndef STATSMANAGER_H +#define STATSMANAGER_H + +#include "stats/statsview.h" +#include "stats/statsstate.h" + +class StatsManager : public QObject { + Q_OBJECT +public: + StatsManager(); + ~StatsManager(); + Q_INVOKABLE void init(StatsView *v); + Q_INVOKABLE void doit(); +private: + StatsView *view; + StatsState state; +}; + +#endif |