1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-28 05:34:47 +01:00
GPXSee/src/maplist.h

18 lines
240 B
C
Raw Normal View History

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