mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-31 09:05:14 +01:00
13 lines
182 B
C
13 lines
182 B
C
|
#ifndef INFOLABEL_H
|
||
|
#define INFOLABEL_H
|
||
|
|
||
|
#include <QLabel>
|
||
|
|
||
|
class InfoLabel : public QLabel
|
||
|
{
|
||
|
public:
|
||
|
InfoLabel(const QString &text, QWidget *parent = 0);
|
||
|
};
|
||
|
|
||
|
#endif // INFOLABEL_H
|