mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
d77f254328
In analogy to "QMLManager", add a "StatsManager" class, which manages the statistics module on mobile. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
20 lines
355 B
C++
20 lines
355 B
C++
// 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
|