| | | 1 | | namespace Itinero.Data; |
| | | 2 | | |
| | | 3 | | /// <summary> |
| | | 4 | | /// A manager to manage mapping or vertex and edge ids and turn restrictions. |
| | | 5 | | /// </summary> |
| | | 6 | | public class GlobalNetworkManager |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// Creates a new global network manager. |
| | | 10 | | /// </summary> |
| | 0 | 11 | | public GlobalNetworkManager() |
| | 0 | 12 | | { |
| | 0 | 13 | | this.VertexIdSet = new GlobalVertexIdSet(); |
| | 0 | 14 | | this.EdgeIdSet = new GlobalEdgeIdSet(); |
| | 0 | 15 | | } |
| | | 16 | | |
| | | 17 | | /// <summary> |
| | | 18 | | /// The global vertex id set. |
| | | 19 | | /// </summary> |
| | 0 | 20 | | public GlobalVertexIdSet VertexIdSet { get; } |
| | | 21 | | |
| | | 22 | | /// <summary> |
| | | 23 | | /// The global edge id set. |
| | | 24 | | /// </summary> |
| | 0 | 25 | | public GlobalEdgeIdSet EdgeIdSet { get; } |
| | | 26 | | } |