source: flair-src/trunk/lib/FlairCore/src/GridLayout.h@ 321

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

sources reformatted with flair-format-dir script

File size: 1.1 KB
RevLine 
[2]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[2]4// %flair:license}
5/*!
6 * \file GridLayout.h
7 * \brief Class displaying a QGridLayout 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 GRIDLAYOUT_H
14#define GRIDLAYOUT_H
15
16#include <Layout.h>
17
[15]18namespace flair {
19namespace gui {
20class LayoutPosition;
[2]21
[15]22/*! \class GridLayout
23*
24* \brief Class displaying a QGridLayout on the ground station
25*
26*/
27class GridLayout : public Layout {
28public:
29 /*!
30 * \brief Constructor
31 *
32 * Construct a QCheckBox at given position. \n
33 * The GridLayout 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 parent parent
38 * \param name name
[2]39
[15]40 */
41 GridLayout(const LayoutPosition *position, std::string name);
[2]42
[15]43 /*!
44 * \brief Destructor
45 *
46 */
47 ~GridLayout();
[2]48
[15]49private:
50};
[2]51
52} // end namespace gui
53} // end namespace flair
54
55#endif // GRIDLAYOUT_H
Note: See TracBrowser for help on using the repository browser.