| 913 | } |
| 914 | |
| 915 | bool RoutingManager::IsMyPosition(RouteMarkType type, size_t intermediateIndex) |
| 916 | { |
| 917 | RoutePointsLayout routePoints(*m_bmManager); |
| 918 | RouteMarkPoint const * mark = routePoints.GetRoutePoint(type, intermediateIndex); |
| 919 | return mark != nullptr && mark->IsMyPosition(); |
| 920 | } |
| 921 | |
| 922 | vector<RouteMarkData> RoutingManager::GetRoutePoints() const |
| 923 | { |
no test coverage detected