| 66 | } |
| 67 | |
| 68 | void GpsTrack::AddPoint(location::GpsInfo const & point) |
| 69 | { |
| 70 | { |
| 71 | std::lock_guard lg(m_dataGuard); |
| 72 | m_points.emplace_back(point); |
| 73 | } |
| 74 | ScheduleTask(); |
| 75 | } |
| 76 | |
| 77 | void GpsTrack::AddPoints(vector<location::GpsInfo> const & points) |
| 78 | { |
no test coverage detected