| 42 | struct Link |
| 43 | { |
| 44 | Link(LinkPtr const & parent, Graph::Edge const & edge, double const distanceM) |
| 45 | : m_parent(parent) |
| 46 | , m_edge(edge) |
| 47 | , m_distanceM(distanceM) |
| 48 | , m_hasFake((parent && parent->m_hasFake) || edge.IsFake()) |
| 49 | {} |
| 50 | |
| 51 | bool IsPointOnPath(geometry::PointWithAltitude const & point) const; |
| 52 |