15 lines
219 B
C++
15 lines
219 B
C++
#ifndef LIGHTLABEL_H
|
|
#define LIGHTLABEL_H
|
|
|
|
#include <QLabel>
|
|
#include <QObject>
|
|
|
|
class LightLabel : public QLabel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit LightLabel(QWidget *parent = nullptr);
|
|
};
|
|
|
|
#endif // LIGHTLABEL_H
|