aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/tab-widgets/TabBase.h
blob: b2caf5ffc2eddd34af014bd08e5e475a7d570cc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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