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

Last change on this file since 46 was 15, checked in by Bayard Gildas, 8 years ago

sources reformatted with flair-format-dir script

File size: 381 bytes
RevLine 
[10]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[10]4// %flair:license}
[9]5#ifndef TAB_H
6#define TAB_H
7
8#include "Layout.h"
9
10class TabWidget;
11
[15]12class Tab : public Layout {
[9]13
[15]14public:
15 Tab(TabWidget *parent, QString name, int position);
16 ~Tab();
[9]17
[15]18private:
19 TabWidget *parent_tab;
20 QWidget *onglet;
[9]21};
22
23#endif // TAB_H
Note: See TracBrowser for help on using the repository browser.