mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-02-12 06:10:48 +01:00
29 lines
524 B
C++
29 lines
524 B
C++
#ifndef IMG_GMAP_H
|
|
#define IMG_GMAP_H
|
|
|
|
#include "mapdata.h"
|
|
|
|
class QXmlStreamReader;
|
|
class QDir;
|
|
|
|
namespace IMG {
|
|
|
|
class GMAPData : public MapData
|
|
{
|
|
public:
|
|
GMAPData(const QString &fileName);
|
|
~GMAPData();
|
|
|
|
private:
|
|
bool readXML(const QString &path, QString &dataDir, QString &typFile);
|
|
void mapProduct(QXmlStreamReader &reader, QString &dataDir, QString &typFile);
|
|
void subProduct(QXmlStreamReader &reader, QString &dataDir);
|
|
bool loadTile(const QDir &dir);
|
|
|
|
QList<const QString*> _files;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // IMG_GMAP_H
|