| | 1 | | using System; |
| | 2 | | using System.IO; |
| | 3 | | using Itinero.Indexes; |
| | 4 | |
|
| | 5 | | namespace Itinero; |
| | 6 | |
|
| | 7 | | /// <summary> |
| | 8 | | /// Contains settings to deserialize router dbs. |
| | 9 | | /// </summary> |
| | 10 | | public class RouterDbReadSettings |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// The attribute set index for edge type attributes. |
| | 14 | | /// </summary> |
| 2 | 15 | | public AttributeSetIndex EdgeTypeAttributeSetIndex { get; set; } = new AttributeSetDictionaryIndex(); |
| | 16 | |
|
| | 17 | | /// <summary> |
| | 18 | | /// The attribute set index for turn cost attributes. |
| | 19 | | /// </summary> |
| 2 | 20 | | public AttributeSetIndex TurnCostAttributeSetIndex { get; set; } = new AttributeSetDictionaryIndex(); |
| | 21 | | } |