GeoTile.h 351 Bytes
Newer Older
Valentin Platzgummer's avatar
Valentin Platzgummer committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#pragma once

#include "Wima/Geometry/WimaAreaData.h"

class GeoTile : public WimaAreaData
{
public:
    GeoTile();
    GeoTile(const GeoTile&other);

    QString type() const {return "Tile";}
    GeoTile* Clone() const {return new GeoTile(*this);}

    GeoTile& operator=(const GeoTile &other);

protected:
    void assign(const GeoTile &other);
};