A1210_Desktop/customlabel.h

18 lines
234 B
C
Raw Normal View History

2023-11-17 09:24:13 +03:00
#ifndef CUSTOMLABEL_H
#define CUSTOMLABEL_H
#include <QObject>
#include <QWidget>
class CustomLabel : public QWidget
{
Q_OBJECT
public:
explicit CustomLabel(QWidget *parent = nullptr);
signals:
};
#endif // CUSTOMLABEL_H