source: flair-src/trunk/tools/FlairGCS/src/Label.h@ 10

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

lic

File size: 450 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 LABEL_H
6#define LABEL_H
7
8#include "XmlWidget.h"
9
10class Layout;
11class QLabel;
12
13class Label: public XmlWidget
14{
15 public:
16 Label(Layout* parent,int row, int col,QString name);
17 ~Label();
18
19 private:
20 void XmlEvent(QDomElement dom);
21 QLabel *label;
22
23
24};
25
26#endif // LABEL_H
Note: See TracBrowser for help on using the repository browser.