mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
63664061eb
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
19 lines
300 B
C++
19 lines
300 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef TAB_BASE_H
|
|
#define TAB_BASE_H
|
|
|
|
#include <QWidget>
|
|
|
|
struct dive;
|
|
|
|
class TabBase : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
using QWidget::QWidget;
|
|
virtual void updateData() = 0;
|
|
virtual void clear() = 0;
|
|
virtual void updateUi(QString titleColor);
|
|
};
|
|
|
|
#endif
|