blob: 3cae244c04d1a29373a63023870283fc13aeca72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|