mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-03-13 18:47:45 +01:00
16 lines
215 B
C++
16 lines
215 B
C++
#ifndef POPUP_H
|
|
#define POPUP_H
|
|
|
|
class QPoint;
|
|
class QString;
|
|
class QWidget;
|
|
|
|
class Popup
|
|
{
|
|
public:
|
|
static void show(const QPoint &pos, const QString &text, QWidget *w);
|
|
static void clear();
|
|
};
|
|
|
|
#endif // POPUP_H
|