Last change
on this file since 418 was 324, checked in by Sanahuja Guillaume, 5 years ago |
removing opencv dependency
|
File size:
418 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 |
|
---|
10 | class Layout;
|
---|
11 | class QLabel;
|
---|
12 |
|
---|
13 | class Label : public XmlWidget {
|
---|
14 | public:
|
---|
15 | Label(Layout *parent, int row, int col, QString name);
|
---|
16 | ~Label();
|
---|
17 |
|
---|
18 | private:
|
---|
19 | void XmlEvent(QDomElement *dom);
|
---|
20 | QLabel *label;
|
---|
21 | };
|
---|
22 |
|
---|
23 | #endif // LABEL_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.