WaypointGlobal.h 432 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 WAYPOINTGLOBAL_H
#define WAYPOINTGLOBAL_H

#include "Waypoint.h"
#include <QPointF>

class WaypointGlobal: public Waypoint {
    Q_OBJECT

public:
    WaypointGlobal(const QPointF coordinate);

    public slots:

//    void set_latitud(double latitud);
//    void set_longitud(double longitud);
//    double get_latitud();
//    double get_longitud();

private:
    QPointF coordinateWP;





};

#endif // WAYPOINTGLOBAL_H