TerrainCacheTileServer.h 384 Bytes
Newer Older
Andreas Bircher's avatar
Andreas Bircher committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef TERRAINCACHESERVER_H
#define TERRAINCACHESERVER_H

#include "TerrainTile.h"

class TerrainCacheTileServer
{
public:
    TerrainCacheTileServer();

    bool cacheTerrainData(const QGeoCoordinate& southWest, const QGeoCoordinate& northEast);

    bool cached(const QGeoCoordinate& coord);

private:
    QStringList             _downloadQueue;
};

#endif // TERRAINCACHESERVER_H