Flair
Framework Libre Air
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties
Tab.h
Go to the documentation of this file.
1 // %flair:license{
2 // This file is part of the Flair framework distributed under the
3 // CECILL-C License, Version 1.0.
4 // %flair:license}
13 #ifndef TAB_H
14 #define TAB_H
15 
16 #include <Layout.h>
17 
18 namespace flair {
19 namespace gui {
20 
21 class TabWidget;
22 
29 class Tab : public Layout {
30 public:
40  Tab(const TabWidget *parent, std::string name, int position = -1);
41 
46  ~Tab();
47 
48 private:
49 };
50 
51 } // end namespace gui
52 } // end namespace flair
53 
54 #endif // TAB_H
Tab(const TabWidget *parent, std::string name, int position=-1)
Constructor.
~Tab()
Destructor.
Abstract class to display a layout on the ground station.
Abstract class to display a layout on the ground station.
Definition: Layout.h:33
Class displaying a QTabWidget on the ground station.
Definition: TabWidget.h:29
Class displaying a QTab on the ground station.
Definition: Tab.h:29