source: flair-src/trunk/tools/FlairGCS/src/Tab.h@ 9

Last change on this file since 9 was 9, checked in by Sanahuja Guillaume, 8 years ago

gcs

File size: 273 bytes
Line 
1#ifndef TAB_H
2#define TAB_H
3
4#include "Layout.h"
5
6class TabWidget;
7
8class Tab: public Layout
9{
10
11 public:
12 Tab(TabWidget* parent,QString name,int position);
13 ~Tab();
14
15 private:
16 TabWidget *parent_tab;
17 QWidget* onglet;
18
19};
20
21#endif // TAB_H
Note: See TracBrowser for help on using the repository browser.