Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Osm/Relation.cs @ 8290

Last change on this file since 8290 was 8290, checked in by spimming, 12 years ago

#1984: core data types for osm graphs implemented

File size: 367 bytes
Line 
1
2using System.Collections.Generic;
3namespace HeuristicLab.Problems.RoutePlanning.Osm {
4  public class Relation : OsmBase {
5    private List<RelationMember> members;
6
7    public Relation(int id)
8      : base(id) {
9      members = new List<RelationMember>();
10    }
11
12    public List<RelationMember> Members {
13      get { return members; }
14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.