mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
23 lines
351 B
C
23 lines
351 B
C
|
#ifndef TAB_DIVE_STATISTICS_H
|
||
|
#define TAB_DIVE_STATISTICS_H
|
||
|
|
||
|
#include "TabBase.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class TabDiveStatistics;
|
||
|
};
|
||
|
|
||
|
class TabDiveStatistics : public TabBase {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
TabDiveStatistics(QWidget *parent);
|
||
|
~TabDiveStatistics();
|
||
|
void updateData() override;
|
||
|
void clear() override;
|
||
|
|
||
|
private:
|
||
|
Ui::TabDiveStatistics *ui;
|
||
|
};
|
||
|
|
||
|
#endif
|