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

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

gcs

File size: 310 bytes
Line 
1#ifndef LABEL_H
2#define LABEL_H
3
4#include "XmlWidget.h"
5
6class Layout;
7class QLabel;
8
9class Label: public XmlWidget
10{
11 public:
12 Label(Layout* parent,int row, int col,QString name);
13 ~Label();
14
15 private:
16 void XmlEvent(QDomElement dom);
17 QLabel *label;
18
19
20};
21
22#endif // LABEL_H
Note: See TracBrowser for help on using the repository browser.