source: flair-src/trunk/tools/FlairGCS/src/GridLayout.h@ 91

Last change on this file since 91 was 15, checked in by Bayard Gildas, 8 years ago

sources reformatted with flair-format-dir script

File size: 381 bytes
RevLine 
[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 GRIDLAYOUT_H
6#define GRIDLAYOUT_H
7
8#include "Layout.h"
9
[15]10class GridLayout : public Layout {
[9]11
[15]12public:
13 GridLayout(Layout *parent, int row, int col, QString name);
14 ~GridLayout();
[9]15
[15]16private:
17 QWidget *widget;
[9]18};
19
20#endif // GRIDLAYOUT_H
Note: See TracBrowser for help on using the repository browser.