mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
385816be2e
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
17 lines
226 B
C++
17 lines
226 B
C++
#ifndef TAB_BASE_H
|
|
#define TAB_BASE_H
|
|
|
|
#include <QWidget>
|
|
|
|
struct dive;
|
|
|
|
class TabBase : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TabBase(QWidget *parent = 0);
|
|
virtual void updateData() = 0;
|
|
virtual void clear() = 0;
|
|
};
|
|
|
|
#endif
|