A1210_Desktop/customlabel.h

18 lines
234 B
C++

#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