blob: 94d2e71b0427628acfa594bf81486dc0502e743c (
plain) (
tree)
|
|
// 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();
void clear();
private:
Ui::TabDiveStatistics *ui;
};
#endif
|