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

17 lines
221 B
C
Raw Normal View History

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