source:
flair-src/trunk/tools/FlairGCS/src/GridLayout.h@
10
Last change on this file since 10 was 10, checked in by , 9 years ago | |
---|---|
File size: 406 bytes |
Rev | Line | |
---|---|---|
[10] | 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} | |
[9] | 5 | #ifndef GRIDLAYOUT_H |
6 | #define GRIDLAYOUT_H | |
7 | ||
8 | #include "Layout.h" | |
9 | ||
10 | class GridLayout: public Layout | |
11 | { | |
12 | ||
13 | public: | |
14 | GridLayout(Layout* parent,int row, int col,QString name); | |
15 | ~GridLayout(); | |
16 | ||
17 | private: | |
18 | QWidget* widget; | |
19 | }; | |
20 | ||
21 | #endif // GRIDLAYOUT_H |
Note:
See TracBrowser
for help on using the repository browser.