// %flair:license{ // This file is part of the Flair framework distributed under the // CECILL-C License, Version 1.0. // %flair:license} #ifndef TAB_H #define TAB_H #include "Layout.h" class TabWidget; class Tab: public Layout { public: Tab(TabWidget* parent,QString name,int position); ~Tab(); private: TabWidget *parent_tab; QWidget* onglet; }; #endif // TAB_H