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

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

class WimaVehicleCorridor : public WimaPolygon
{
    Q_OBJECT
public:
    WimaVehicleCorridor(QObject* parent);

    // Overrides from WimaPolygon
    QString         mapVisualQML    (void) const { return "WimaVehicleCorridorMapVisal.qml";}
    QString         editorQML       (void) const { return "WimaVehicleCorridorEditor.qml";}
};

#endif // WIMAVEHICLECORRIDOR_H