mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-25 04:05:53 +01:00
22 lines
415 B
C++
22 lines
415 B
C++
#ifndef MAPLIST_H
|
|
#define MAPLIST_H
|
|
|
|
#include <QString>
|
|
|
|
class Map;
|
|
|
|
class MapList
|
|
{
|
|
public:
|
|
static QList<Map*> loadMaps(const QString &path, QString &errorString);
|
|
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
|