| 129 | } |
| 130 | |
| 131 | void CrossMwmGraph::GetOutgoingEdgeList(Segment const & enter, EdgeListT & edges) |
| 132 | { |
| 133 | ASSERT(IsTransition(enter, false /* isEnter */), |
| 134 | ("The segment is not a transition segment. IsTransition(", enter, ", false) returns false.")); |
| 135 | |
| 136 | // Is not supported yet. |
| 137 | /* |
| 138 | if (TransitGraph::IsTransitSegment(enter)) |
| 139 | { |
| 140 | if (TransitCrossMwmSectionExists(enter.GetMwmId())) |
| 141 | m_crossMwmTransitGraph.GetOutgoingEdgeList(enter, edges); |
| 142 | return; |
| 143 | } |
| 144 | */ |
| 145 | |
| 146 | if (CrossMwmSectionExists(enter.GetMwmId())) |
| 147 | m_crossMwmIndexGraph.GetOutgoingEdgeList(enter, edges); |
| 148 | } |
| 149 | |
| 150 | void CrossMwmGraph::GetIngoingEdgeList(Segment const & exit, EdgeListT & edges) |
| 151 | { |