| 759 | } |
| 760 | |
| 761 | void RoutingSession::PushPositionAccumulator(m2::PointD const & position) |
| 762 | { |
| 763 | CHECK_THREAD_CHECKER(m_threadChecker, ()); |
| 764 | |
| 765 | m_positionAccumulator.PushNextPoint(position); |
| 766 | } |
| 767 | void RoutingSession::ClearPositionAccumulator() |
| 768 | { |
| 769 | CHECK_THREAD_CHECKER(m_threadChecker, ()); |
no test coverage detected