1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/graph.cpp

10 lines
224 B
C++
Raw Normal View History

2016-11-05 20:00:14 +01:00
#include "graph.h"
QDebug operator<<(QDebug dbg, const GraphPoint &graphpoint)
{
dbg.nospace() << "GraphPoint(" << graphpoint.s() << ", "
<< graphpoint.t() << ", " << graphpoint.y() << ")";
return dbg.maybeSpace();
}