X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flibr2c2%2Ftimetable.h;h=07250ca94a941376601ad0dafd4b7419c4daaba2;hb=1ac853ffc606b29ffd88b923ed3551ee6282afb2;hp=b67e5fb3c2baa4761b639dae6a55e3902795e014;hpb=c8c39c4256af8676d46063db88048d809cc2ee5f;p=r2c2.git diff --git a/source/libr2c2/timetable.h b/source/libr2c2/timetable.h index b67e5fb..07250ca 100644 --- a/source/libr2c2/timetable.h +++ b/source/libr2c2/timetable.h @@ -7,7 +7,7 @@ namespace R2C2 { class Layout; -class Zone; +class TrackChain; class Timetable: public TrainAI { @@ -41,12 +41,13 @@ public: Loader(Row &, Layout &); private: - void zone(const std::string &, unsigned); + void block(unsigned); void time(Msp::Time::RawTime); + void zone(const std::string &, unsigned); }; RowType type; - Zone *zone; + TrackChain *target; Msp::Time::TimeDelta time; Row();