source: flair-src/trunk/lib/FlairCore/src/GroupBox.h@ 450

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

sources reformatted with flair-format-dir script

File size: 1.1 KB
Line 
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}
5/*!
6 * \file GroupBox.h
7 * \brief Class displaying a QGroupBox on the ground station
8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2011/10/07
10 * \version 4.0
11 */
12
13#ifndef GROUPBOX_H
14#define GROUPBOX_H
15
16#include <Layout.h>
17
18namespace flair {
19namespace gui {
20class LayoutPosition;
21
22/*! \class GroupBox
23*
24* \brief Class displaying a QGroupBox on the ground station
25*
26*/
27class GroupBox : public Layout {
28public:
29 /*!
30 * \brief Constructor
31 *
32 * Construct a QGroupBox at given position. \n
33 * The GroupBox will automatically be child of position->getLayout() Layout.
34 *After calling this constructor,
35 * position will be deleted as it is no longer usefull.
36 *
37 * \param position position
38 * \param name name
39 */
40 GroupBox(const LayoutPosition *position, std::string name);
41
42 /*!
43 * \brief Destructor
44 *
45 */
46 ~GroupBox();
47
48private:
49};
50
51} // end namespace gui
52} // end namespace flair
53
54#endif // GROUPBOX_H
Note: See TracBrowser for help on using the repository browser.