#ifndef LABEL_H #define LABEL_H #include "XmlWidget.h" class Layout; class QLabel; class Label: public XmlWidget { public: Label(Layout* parent,int row, int col,QString name); ~Label(); private: void XmlEvent(QDomElement dom); QLabel *label; }; #endif // LABEL_H