| 517 | } |
| 518 | |
| 519 | void RoutingSession::PassCheckpoints() |
| 520 | { |
| 521 | CHECK_THREAD_CHECKER(m_threadChecker, ()); |
| 522 | while (!m_checkpoints.IsFinished() && m_route->IsSubroutePassed(m_checkpoints.GetPassedIdx())) |
| 523 | { |
| 524 | m_route->PassNextSubroute(); |
| 525 | m_checkpoints.PassNextPoint(); |
| 526 | LOG(LINFO, ("Pass checkpoint, ", m_checkpoints)); |
| 527 | m_checkpointCallback(m_checkpoints.GetPassedIdx()); |
| 528 | } |
| 529 | } |
| 530 | |
| 531 | void RoutingSession::GenerateNotifications(std::vector<std::string> & notifications, bool announceStreets) |
| 532 | { |
nothing calls this directly
no test coverage detected