1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-19 12:12:08 +01:00
GPXSee/src/data/gpiparser.h

26 lines
618 B
C
Raw Normal View History

2019-10-25 22:30:12 +02:00
#ifndef GPIPARSER_H
#define GPIPARSER_H
#include "parser.h"
class DataStream;
2019-10-25 22:30:12 +02:00
class GPIParser : public Parser
{
public:
bool parse(QFile *file, QList<TrackData> &tracks, QList<RouteData> &routes,
QList<Area> &polygons, QVector<Waypoint> &waypoints);
QString errorString() const {return _errorString;}
int errorLine() const {return 0;}
private:
bool readFileHeader(DataStream &stream, quint32 &ebs);
bool readGPIHeader(DataStream &stream);
bool readData(DataStream &stream, QVector<Waypoint> &waypoints,
QList<Area> &polygons, const QString &fileName);
2019-10-25 22:30:12 +02:00
QString _errorString;
};
#endif // GPIPARSER_H