Changeset 202 in tmcsimulator for branches/FEPSimulator/HighwaysParser.h
- Timestamp:
- 10/30/2017 06:35:42 PM (9 years ago)
- File:
-
- 1 edited
-
branches/FEPSimulator/HighwaysParser.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/FEPSimulator/HighwaysParser.h
r198 r202 13 13 #include <iostream> 14 14 #include <sstream> 15 #include <stdio.h> 16 #include "DataPacker.h" 15 17 16 18 class HighwaysParser { … … 18 20 HighwaysParser(char * highwaysData); 19 21 20 vector<FEP_LINE*> getLines(); 21 vector<STATION*> getStations(); 22 22 vector<FEP_LINE*> lines; 23 vector<STATION*> stations; 23 24 virtual ~HighwaysParser(); 24 25 private: 25 vector<FEP_LINE*> lines; 26 vector<STATION*> stations; 27 28 FEP_LINE * parseLine(istringstream highwaysData); 29 STATION * parseStation(istringstream highwaysData); 30 LOOP * parseLoop(istringstream highwaysData); 31 void parseLines(istringstream highwaysData); 26 void parseLines(char * highwaysData); 32 27 }; 33 28
Note: See TracChangeset
for help on using the changeset viewer.
