16QGeoLocationPrivate::QGeoLocationPrivate(
const QGeoLocationPrivate &other)
19 this->address = other.address;
20 this->coordinate = other.coordinate;
21 this->viewport = other.viewport;
22 this->extendedAttributes = other.extendedAttributes;
29bool QGeoLocationPrivate::operator==(
const QGeoLocationPrivate &other)
const
31 return (
this->address == other.address
32 &&
this->coordinate == other.coordinate
33 &&
this->viewport == other.viewport
34 &&
this->extendedAttributes == other.extendedAttributes);