mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-13 17:42:09 +01:00
9 lines
198 B
C++
9 lines
198 B
C++
#include "graph.h"
|
|
|
|
QDebug operator<<(QDebug dbg, const GraphPoint &point)
|
|
{
|
|
dbg.nospace() << "GraphPoint(" << point.s() << ", " << point.t() << ", "
|
|
<< point.y() << ")";
|
|
return dbg.space();
|
|
}
|