Flair
Framework Libre Air
GroupBox.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 GROUPBOX_H
14 #define GROUPBOX_H
15 
16 #include <Layout.h>
17 
18 namespace flair {
19 namespace gui {
20 class LayoutPosition;
21 
27 class GroupBox : public Layout {
28 public:
40  GroupBox(const LayoutPosition *position, std::string name);
41 
46  ~GroupBox();
47 
48 private:
49 };
50 
51 } // end namespace gui
52 } // end namespace flair
53 
54 #endif // GROUPBOX_H
~GroupBox()
Destructor.
namespace of the flair Framework
Definition: Ahrs.h:19
Class displaying a QGroupBox on the ground station.
Definition: GroupBox.h:27
Abstract class to display a layout on the ground station.
Abstract class to display a layout on the ground station.
Definition: Layout.h:33
GroupBox(const LayoutPosition *position, std::string name)
Constructor.
Class to define a position in a layout on the ground station.
Definition: LayoutPosition.h:28