| 366 | } |
| 367 | |
| 368 | RouteMarkPoint const * RoutePointsLayout::GetRoutePoint(RouteMarkType type, size_t intermediateIndex) const |
| 369 | { |
| 370 | for (auto markId : m_manager.GetUserMarkIds(UserMark::Type::ROUTING)) |
| 371 | { |
| 372 | auto const * mark = m_manager.GetMark<RouteMarkPoint>(markId); |
| 373 | if (mark->IsEqualFullType(type, intermediateIndex)) |
| 374 | return mark; |
| 375 | } |
| 376 | return nullptr; |
| 377 | } |
| 378 | |
| 379 | RouteMarkPoint * RoutePointsLayout::GetRoutePointForEdit(RouteMarkType type, size_t intermediateIndex) |
| 380 | { |
no test coverage detected