| 60 | bool IsValid() const { return m_source != EUndefined; } |
| 61 | bool HasBearing() const { return m_bearing >= 0.0; } |
| 62 | bool HasSpeed() const { return m_speed >= 0.0; } |
| 63 | bool HasVerticalAccuracy() const { return m_verticalAccuracy >= 0.0; } |
| 64 | ms::LatLon GetLatLon() const { return {m_latitude, m_longitude}; } |
| 65 | }; |
no outgoing calls
no test coverage detected