Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1894:

  • new default constructor for osm base types
  • defined common interface for data sources
  • implemented xml data source
  • added test project with osm test files
File size: 447 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() {
8      members = new List<RelationMember>();
9    }
10
11    public Relation(long id)
12      : base(id) {
13      members = new List<RelationMember>();
14    }
15
16    public List<RelationMember> Members {
17      get { return members; }
18    }
19  }
20}
Note: See TracBrowser for help on using the repository browser.