mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-04-10 07:39:11 +02:00
21 lines
346 B
C++
21 lines
346 B
C++
#ifndef MAPLIST_H
|
|
#define MAPLIST_H
|
|
|
|
#include <QString>
|
|
|
|
class Map;
|
|
|
|
class MapList
|
|
{
|
|
public:
|
|
static QList<Map*> loadMaps(const QString &path);
|
|
static QString formats();
|
|
static QStringList filter();
|
|
|
|
private:
|
|
static Map *loadFile(const QString &path, bool *terminate);
|
|
static QList<Map*> loadDir(const QString &path);
|
|
};
|
|
|
|
#endif // MAPLIST_H
|