| 217 | } |
| 218 | |
| 219 | void IRoadGraph::GetFakeIngoingEdges(JunctionPointT const & junction, EdgeListT & edges) const |
| 220 | { |
| 221 | auto const it = m_fakeIngoingEdges.find(junction); |
| 222 | if (it != m_fakeIngoingEdges.cend()) |
| 223 | edges.append(it->second.cbegin(), it->second.cend()); |
| 224 | } |
| 225 | |
| 226 | void IRoadGraph::ResetFakes() |
| 227 | { |
no test coverage detected