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