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

Added cadence and power graphs

This commit is contained in:
2016-11-06 03:28:08 +01:00
parent aac9bf024b
commit 8a90a736d2
15 changed files with 469 additions and 184 deletions

View File

@ -17,10 +17,6 @@ public:
int errorLine() const {return _reader.lineNumber();}
private:
enum DataType {
Name, Description, Elevation, Time, Speed, HeartRate, Temperature
};
bool parse();
void gpx();
void track(TrackData &track);
@ -34,9 +30,6 @@ private:
QDateTime time();
Coordinates coordinates();
void handleWaypointData(DataType type, Waypoint &waypoint);
void handleTrackpointData(DataType type, Trackpoint &trackpoint);
QXmlStreamReader _reader;
};