Last change
on this file since 168 was 15, checked in by Bayard Gildas, 9 years ago |
sources reformatted with flair-format-dir script
|
File size:
386 bytes
|
Rev | Line | |
---|
[10] | 1 | // %flair:license{
|
---|
[15] | 2 | // This file is part of the Flair framework distributed under the
|
---|
| 3 | // CECILL-C License, Version 1.0.
|
---|
[10] | 4 | // %flair:license}
|
---|
[9] | 5 | #ifndef GROUPBOX_H
|
---|
| 6 | #define GROUPBOX_H
|
---|
| 7 |
|
---|
| 8 | #include "Layout.h"
|
---|
| 9 |
|
---|
| 10 | class QGroupBox;
|
---|
| 11 |
|
---|
[15] | 12 | class GroupBox : public Layout {
|
---|
[9] | 13 |
|
---|
[15] | 14 | public:
|
---|
| 15 | GroupBox(Layout *parent, int row, int col, QString name);
|
---|
| 16 | ~GroupBox();
|
---|
[9] | 17 |
|
---|
[15] | 18 | private:
|
---|
| 19 | QGroupBox *box;
|
---|
[9] | 20 | };
|
---|
| 21 |
|
---|
| 22 | #endif // GROUPBOX_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.