forked from organicmaps/organicmaps
Init GpsTrackInfo from GpsInfo
This commit is contained in:
parent
13fe9fddde
commit
98cbc0bf22
1 changed files with 14 additions and 0 deletions
|
@ -69,6 +69,20 @@ namespace location
|
|||
double m_latitude; //!< degrees
|
||||
double m_longitude; //!< degrees
|
||||
double m_speed; //!< meters per second
|
||||
|
||||
GpsTrackInfo() = default;
|
||||
GpsTrackInfo(GpsTrackInfo const &) = default;
|
||||
GpsTrackInfo & operator=(GpsTrackInfo const &) = default;
|
||||
GpsTrackInfo(GpsInfo const & info)
|
||||
: m_timestamp(info.m_timestamp)
|
||||
, m_latitude(info.m_latitude)
|
||||
, m_longitude(info.m_longitude)
|
||||
, m_speed(info.m_speed)
|
||||
{}
|
||||
GpsTrackInfo & operator=(GpsInfo const & info)
|
||||
{
|
||||
return operator=(GpsTrackInfo(info));
|
||||
}
|
||||
};
|
||||
|
||||
class CompassInfo
|
||||
|
|
Loading…
Add table
Reference in a new issue