QGCMissionNavWaypoint.h 506 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
#ifndef QGCMISSIONNAVWAYPOINT_H
#define QGCMISSIONNAVWAYPOINT_H

#include <QWidget>
#include "WaypointEditableView.h"

namespace Ui {
    class QGCMissionNavWaypoint;
}

class QGCMissionNavWaypoint : public QWidget
{
    Q_OBJECT

public:
    explicit QGCMissionNavWaypoint(WaypointEditableView* WEV);
    ~QGCMissionNavWaypoint();

public slots:
    void updateFrame(MAV_FRAME);

protected:
    WaypointEditableView* WEV;

private:
    Ui::QGCMissionNavWaypoint *ui;
};

#endif // QGCMISSIONNAVWAYPOINT_H