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

9 lines
198 B
C++
Raw Normal View History

2016-11-05 20:00:14 +01:00
#include "graph.h"
2016-11-14 22:12:43 +01:00
QDebug operator<<(QDebug dbg, const GraphPoint &point)
2016-11-05 20:00:14 +01:00
{
2016-11-14 22:12:43 +01:00
dbg.nospace() << "GraphPoint(" << point.s() << ", " << point.t() << ", "
<< point.y() << ")";
2017-08-15 15:13:34 +02:00
return dbg.space();
2016-11-05 20:00:14 +01:00
}