GeoTile.cpp 323 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 20 21 22 23
#include "GeoTile.h"

GeoTile::GeoTile() : WimaAreaData()
{

}

GeoTile::GeoTile(const GeoTile &other) : WimaAreaData()
{
    *this = other;
}

GeoTile &GeoTile::operator=(const GeoTile &other)
{
    this->assign(other);
    return *this;

}

void GeoTile::assign(const GeoTile &other)
{
    WimaAreaData::assign(other);
}