Waypoint2DIcon.h 343 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef WAYPOINT2DICON_H
#define WAYPOINT2DICON_H

#include <QGraphicsItem>
#include "QGC2DIcon.h"

class Waypoint2DIcon : public QGC2DIcon
{
public:
    explicit Waypoint2DIcon(QGraphicsItem* parent = 0);

    QRectF boundingRect() const;
    void paint(QPainter*, const QStyleOptionGraphicsItem*, QWidget*);


};

#endif // WAYPOINT2DICON_H