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

Last change on this file since 9 was 9, checked in by Sanahuja Guillaume, 8 years ago

gcs

File size: 271 bytes
Line 
1#ifndef GROUPBOX_H
2#define GROUPBOX_H
3
4#include "Layout.h"
5
6class QGroupBox;
7
8class GroupBox: public Layout
9{
10
11 public:
12 GroupBox(Layout* parent,int row, int col,QString name);
13 ~GroupBox();
14
15 private:
16 QGroupBox* box;
17};
18
19#endif // GROUPBOX_H
Note: See TracBrowser for help on using the repository browser.