1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 23:03:22 +02:00
GPXSee/src/maplist.h

22 lines
334 B
C
Raw Normal View History

#ifndef MAPLIST_H
#define MAPLIST_H
#include <QList>
2016-02-12 10:09:17 +01:00
#include <QString>
#include <QObject>
2016-02-12 10:09:17 +01:00
class Map;
class Downloader;
class MapList
{
public:
MapList(Downloader *downloader) : _downloader(downloader) {}
QList<Map*> load(const QString &fileName, QObject *parent = 0);
private:
Downloader *_downloader;
};
#endif // MAPLIST_H