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

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

lic

File size: 411 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{
14
15 public:
16 GroupBox(Layout* parent,int row, int col,QString name);
17 ~GroupBox();
18
19 private:
20 QGroupBox* box;
21};
22
23#endif // GROUPBOX_H
Note: See TracBrowser for help on using the repository browser.