source: flair-src/trunk/tools/FlairGCS/src/GroupBox.h@ 235

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

sources reformatted with flair-format-dir script

File size: 386 bytes
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#ifndef GROUPBOX_H
6#define GROUPBOX_H
7
8#include "Layout.h"
9
10class QGroupBox;
11
12class GroupBox : public Layout {
13
14public:
15 GroupBox(Layout *parent, int row, int col, QString name);
16 ~GroupBox();
17
18private:
19 QGroupBox *box;
20};
21
22#endif // GROUPBOX_H
Note: See TracBrowser for help on using the repository browser.