Files

15 lines
196 B
C++
Raw Permalink Normal View History

2026-05-24 23:21:33 +02:00
#ifndef TIPSLABEL_H
#define TIPSLABEL_H
#include <QLabel>
class TipsLabel : public QLabel {
Q_OBJECT
public:
TipsLabel(QWidget* parent = 0);
~TipsLabel();
};
#endif // TIPSLABEL_H