mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
19 lines
319 B
C
19 lines
319 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#ifndef TAB_DIVE_SITE_H
|
||
|
#define TAB_DIVE_SITE_H
|
||
|
|
||
|
#include "TabBase.h"
|
||
|
#include "ui_TabDiveSite.h"
|
||
|
|
||
|
class TabDiveSite : public TabBase {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
TabDiveSite(QWidget *parent = 0);
|
||
|
void updateData() override;
|
||
|
void clear() override;
|
||
|
private:
|
||
|
Ui::TabDiveSite ui;
|
||
|
};
|
||
|
|
||
|
#endif
|