mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-11 19:41:30 +00:00
385816be2e
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
22 lines
355 B
C++
22 lines
355 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 = 0);
|
|
~TabDiveStatistics();
|
|
void updateData() override;
|
|
void clear() override;
|
|
|
|
private:
|
|
Ui::TabDiveStatistics *ui;
|
|
};
|
|
|
|
#endif
|