mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
17 lines
309 B
C++
17 lines
309 B
C++
#ifndef MARKERITEM_H
|
|
#define MARKERITEM_H
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
class MarkerItem : public QGraphicsItem
|
|
{
|
|
public:
|
|
MarkerItem(QGraphicsItem *parent = 0);
|
|
|
|
QRectF boundingRect() const;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
|
|
QWidget *widget);
|
|
};
|
|
|
|
#endif // MARKERITEM_H
|