WimaVehicleCorridor.h 461 Bytes
Newer Older
1
#pragma once
2 3 4 5 6 7 8 9 10

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

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

    // Overrides from WimaPolygon
14
    QString         mapVisualQML    (void) const { return "WimaVehicleCorridorMapVisual.qml";}
15 16 17
    QString         editorQML       (void) const { return "WimaVehicleCorridorEditor.qml";}
};