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