WimaVehicleMeasurementPolygon.h 619 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
#ifndef WIMAVEHICLEMEASUREMENTPOLYGON_H
#define WIMAVEHICLEMEASUREMENTPOLYGON_H

#include <QObject>
#include "WimaPolygon.h"

class WimaVehicleMeasurementPolygon : public WimaPolygon
{
    Q_OBJECT
public:
    WimaVehicleMeasurementPolygon(QObject* parent);
12 13
    WimaVehicleMeasurementPolygon(QGCMapPolygon* other, QObject* parent);

14 15 16 17 18 19
    // Overrides from WimaPolygon
    QString         mapVisualQML    (void) const { return "WimaVehicleMeasurementPolygonMapVisal.qml";}
    QString         editorQML       (void) const { return "WimaVehicleMeasurementPolygonEditor.qml";}
};

#endif // WIMAVEHICLEMEASUREMENTPOLYGON_H