17QGeoLocationPrivate::QGeoLocationPrivate(
const QGeoLocationPrivate &other)
20 this->address = other.address;
21 this->coordinate = other.coordinate;
22 this->viewport = other.viewport;
23 this->extendedAttributes = other.extendedAttributes;
30bool QGeoLocationPrivate::operator==(
const QGeoLocationPrivate &other)
const
32 return (
this->address == other.address
33 &&
this->coordinate == other.coordinate
34 &&
this->viewport == other.viewport
35 &&
this->extendedAttributes == other.extendedAttributes);