summaryrefslogblamecommitdiffstats
path: root/desktop-widgets/tab-widgets/TabBase.h
blob: 054bc9f30303855a4e3899a3f7e2898d9c6f777c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                   









                                
                                     



                                      
// 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:
	TabBase(QWidget *parent = 0);
	virtual void updateData() = 0;
	virtual void clear() = 0;
};

#endif