15 lines
196 B
C++
15 lines
196 B
C++
|
|
#ifndef TIPSLABEL_H
|
||
|
|
#define TIPSLABEL_H
|
||
|
|
|
||
|
|
#include <QLabel>
|
||
|
|
|
||
|
|
class TipsLabel : public QLabel {
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
TipsLabel(QWidget* parent = 0);
|
||
|
|
~TipsLabel();
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // TIPSLABEL_H
|