Skip to content
TerrainCacheTileServer.h 384 B
Newer Older
Andreas Bircher's avatar
Andreas Bircher committed
#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