1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/map/maplist.h

22 lines
415 B
C
Raw Normal View History

#ifndef MAPLIST_H
#define MAPLIST_H
2016-02-12 10:09:17 +01:00
#include <QString>
2018-03-09 23:24:08 +01:00
class Map;
class MapList
{
public:
static QList<Map*> loadMaps(const QString &path, QString &errorString);
2017-07-27 19:47:46 +02:00
static QString formats();
static QStringList filter();
private:
static Map *loadFile(const QString &path, QString &errorString,
bool *terminate);
static QList<Map*> loadDir(const QString &path, QString &errorString);
};
#endif // MAPLIST_H