Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Data.Osm.Core/Relation.cs @ 10216

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

#1894:

  • solution restructured
  • removed obsolete and outdated parts
File size: 457 bytes
Line 
1
2using System.Collections.Generic;
3namespace HeuristicLab.Problems.RoutePlanning.Data.Osm.Core {
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.