mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
21 lines
355 B
C
21 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
|