mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-30 22:51:16 +01:00
12 lines
361 B
C++
12 lines
361 B
C++
#include "trackpoint.h"
|
|
|
|
QDebug operator<<(QDebug dbg, const Trackpoint &trackpoint)
|
|
{
|
|
dbg.nospace() << "Trackpoint(" << trackpoint.coordinates() << ", "
|
|
<< trackpoint.timestamp() << ", " << trackpoint.elevation() << ", "
|
|
<< trackpoint.speed() << ", " << trackpoint.heartRate() << ", "
|
|
<< trackpoint.temperature() << ")";
|
|
|
|
return dbg.maybeSpace();
|
|
}
|