mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
9021a44ccc
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
23 lines
391 B
C++
23 lines
391 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#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
|