1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 23:03:22 +02:00
GPXSee/src/csvparser.h

23 lines
434 B
C
Raw Normal View History

2016-10-23 11:09:20 +02:00
#ifndef CSVPARSER_H
#define CSVPARSER_H
#include "parser.h"
class CSVParser : public Parser
{
public:
2017-07-27 19:47:46 +02:00
CSVParser() : _errorLine(0) {}
2016-10-23 11:09:20 +02:00
~CSVParser() {}
2017-07-27 19:47:46 +02:00
bool parse(QFile *file, QList<TrackData> &track, QList<RouteData> &routes,
QList<Waypoint> &waypoints);
2016-10-23 11:09:20 +02:00
QString errorString() const {return _errorString;}
int errorLine() const {return _errorLine;}
private:
QString _errorString;
int _errorLine;
};
#endif // CSVPARSER_H