[traffic] Update routing MWMs as route changes

Signed-off-by: mvglasow <michael -at- vonglasow.com>
This commit is contained in:
mvglasow
2025-06-29 21:13:36 +03:00
parent b418cf659c
commit 9eeac05fdf
8 changed files with 183 additions and 38 deletions

View File

@@ -470,6 +470,13 @@ double RoutingSession::GetCompletionPercent() const
return percent;
}
void RoutingSession::GetAllRegions(std::set<std::string> & countries)
{
if (!m_router)
return;
m_router->GetAllRegions(countries);
}
void RoutingSession::PassCheckpoints()
{
CHECK_THREAD_CHECKER(m_threadChecker, ());