예제 #1
0
파일: ShuntMove.cs 프로젝트: fadoe/FPLedit
 public ShuntMove(XMLEntity en, Timetable tt) : base(en, tt)
 {
 }
예제 #2
0
파일: Station.cs 프로젝트: fadoe/FPLedit
 public Station(Timetable tt) : base("sta", tt)
 {
     Tracks = new ObservableChildrenCollection <Track>(this, "track", _parent);
 }
예제 #3
0
파일: ShuntMove.cs 프로젝트: fadoe/FPLedit
 public ShuntMove(Timetable tt) : base("shMove", tt)
 {
 }
예제 #4
0
파일: Station.cs 프로젝트: fadoe/FPLedit
 public Station(XMLEntity en, Timetable tt) : base(en, tt)
 {
     Positions.TestForErrors();
     Tracks = new ObservableChildrenCollection <Track>(this, "track", _parent);
 }
예제 #5
0
 public Track(XMLEntity en, Timetable tt) : base(en, tt)
 {
 }
예제 #6
0
 public Track(Timetable tt) : base("track", tt)
 {
 }
예제 #7
0
 public Transition(XMLEntity en, Timetable tt) : base(en, tt)
 {
 }
예제 #8
0
 public Transition(Timetable tt) : base("tra", tt)
 {
 }