mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 05:34:47 +01:00
31 lines
684 B
C++
31 lines
684 B
C++
#ifndef MAPLIST_H
|
|
#define MAPLIST_H
|
|
|
|
#include <QString>
|
|
#include "common/treenode.h"
|
|
|
|
class Map;
|
|
class Projection;
|
|
|
|
class MapList
|
|
{
|
|
public:
|
|
static TreeNode<Map*> loadMaps(const QString &path, const Projection &proj);
|
|
static QString formats();
|
|
static QStringList filter();
|
|
|
|
private:
|
|
typedef Map*(*ParserCb)(const QString &, const Projection &, bool *);
|
|
typedef QMultiMap<QString, ParserCb> ParserMap;
|
|
|
|
static Map *loadFile(const QString &path, const Projection &proj,
|
|
bool *isDir = 0);
|
|
static TreeNode<Map*> loadDir(const QString &path, const Projection &proj,
|
|
TreeNode<Map*> *parent = 0);
|
|
|
|
static ParserMap parsers();
|
|
static ParserMap _parsers;
|
|
};
|
|
|
|
#endif // MAPLIST_H
|