Flair
Framework Libre Air
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties
GridLayout.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 GRIDLAYOUT_H
14 #define GRIDLAYOUT_H
15 
16 #include <Layout.h>
17 
18 namespace flair {
19 namespace gui {
20 class LayoutPosition;
21 
27 class GridLayout : public Layout {
28 public:
41  GridLayout(const LayoutPosition *position, std::string name);
42 
47  ~GridLayout();
48 
49 private:
50 };
51 
52 } // end namespace gui
53 } // end namespace flair
54 
55 #endif // GRIDLAYOUT_H
Class displaying a QGridLayout on the ground station.
Definition: GridLayout.h:27
Abstract class to display a layout on the ground station.
~GridLayout()
Destructor.
Abstract class to display a layout on the ground station.
Definition: Layout.h:33
Class to define a position in a layout on the ground station.
Definition: LayoutPosition.h:28
GridLayout(const LayoutPosition *position, std::string name)
Constructor.