| 210 | } |
| 211 | |
| 212 | void IRoadGraph::GetFakeOutgoingEdges(JunctionPointT const & junction, EdgeListT & edges) const |
| 213 | { |
| 214 | auto const it = m_fakeOutgoingEdges.find(junction); |
| 215 | if (it != m_fakeOutgoingEdges.cend()) |
| 216 | edges.append(it->second.cbegin(), it->second.cend()); |
| 217 | } |
| 218 | |
| 219 | void IRoadGraph::GetFakeIngoingEdges(JunctionPointT const & junction, EdgeListT & edges) const |
| 220 | { |
no test coverage detected