| 152 | } |
| 153 | |
| 154 | std::pair<LatLonWithAltitude, LatLonWithAltitude> GuidesGraph::GetFromTo(Segment const & segment) const |
| 155 | { |
| 156 | auto const & from = GetJunction(segment, false /* front */); |
| 157 | auto const & to = GetJunction(segment, true /* front */); |
| 158 | return std::make_pair(from, to); |
| 159 | } |
| 160 | } // namespace routing |
no outgoing calls
no test coverage detected