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

Last change on this file since 475 was 269, checked in by Sanahuja Guillaume, 6 years ago

flairgcs:
speed up processing time when receiving datas from uav
triger watchdog while receiving datas from uav
(avoids connection lost in uav)

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