mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-02-07 12:05:14 +01:00
17 lines
221 B
C++
17 lines
221 B
C++
#ifndef MAPLIST_H
|
|
#define MAPLIST_H
|
|
|
|
#include <QList>
|
|
#include <QString>
|
|
|
|
class QObject;
|
|
class Map;
|
|
|
|
class MapList
|
|
{
|
|
public:
|
|
static QList<Map*> load(const QString &fileName, QObject *parent = 0);
|
|
};
|
|
|
|
#endif // MAPLIST_H
|