mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
18 lines
240 B
C++
18 lines
240 B
C++
#ifndef MAPLIST_H
|
|
#define MAPLIST_H
|
|
|
|
#include <QList>
|
|
#include <QString>
|
|
#include <QObject>
|
|
|
|
class Map;
|
|
|
|
class MapList
|
|
{
|
|
public:
|
|
static QList<Map*> load(QObject *parent = 0,
|
|
const QString &fileName = QString());
|
|
};
|
|
|
|
#endif // MAPLIST_H
|