| 1011 | } |
| 1012 | |
| 1013 | void RoutingManager::MoveRoutePoint(RouteMarkType currentType, size_t currentIntermediateIndex, |
| 1014 | RouteMarkType targetType, size_t targetIntermediateIndex) |
| 1015 | { |
| 1016 | ASSERT(m_bmManager != nullptr, ()); |
| 1017 | RoutePointsLayout routePoints(*m_bmManager); |
| 1018 | routePoints.MoveRoutePoint(currentType, currentIntermediateIndex, targetType, targetIntermediateIndex); |
| 1019 | } |
| 1020 | |
| 1021 | void RoutingManager::MoveRoutePoint(size_t currentIndex, size_t targetIndex) |
| 1022 | { |
nothing calls this directly
no test coverage detected