1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-17 12:24:24 +02:00

Map sources are now readed from config file

This commit is contained in:
2015-11-23 23:19:57 +01:00
parent c639c6deac
commit 81c0789319
8 changed files with 79 additions and 12 deletions

14
src/maplist.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef MAPLIST_H
#define MAPLIST_H
#include <QList>
#include "map.h"
class MapList
{
public:
static QList<Map*> load(const QString &fileName);
};
#endif // MAPLIST_H