369bool QGeoManeuverPrivate::equals(
const QGeoManeuverPrivate &other)
const
371 return ((valid() == other.valid())
372 && (position() == other.position())
373 && (text() == other.text())
374 && (direction() == other.direction())
375 && (timeToNextInstruction() == other.timeToNextInstruction())
376 && (distanceToNextInstruction() == other.distanceToNextInstruction())
377 && (waypoint() == other.waypoint()));