mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
Martin Tůma
7de08d116a
Added some more waypoint info to waypoint tooltips. Refactoring & optimization.
10 lines
238 B
C++
10 lines
238 B
C++
#include "waypoint.h"
|
|
|
|
QDebug operator<<(QDebug dbg, const Waypoint &waypoint)
|
|
{
|
|
dbg.nospace() << "Waypoint(" << waypoint.coordinates() << ", "
|
|
<< waypoint.name() << ", " << waypoint.description() << ")";
|
|
|
|
return dbg.maybeSpace();
|
|
}
|