Changeset 80 in tmcsimulator for branches/FEPSimulator/NetworkReader.cpp
- Timestamp:
- 10/05/2017 03:04:40 PM (9 years ago)
- Location:
- branches/FEPSimulator
- Files:
-
- 1 copied
- 1 moved
-
. (moved) (moved from branches/fep_rpc_client)
-
NetworkReader.cpp (copied) (copied from branches/fep_rpc_client/NetworkReader.cpp) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/FEPSimulator/NetworkReader.cpp
r79 r80 29 29 30 30 /** 31 * Parses a station xml element into an " LDS_LOOP"31 * Parses a station xml element into an "STATION" 32 32 * 33 33 * @param stationElem the station xml element … … 35 35 * @return the new station 36 36 */ 37 LDS_LOOP* NetworkReader::parseStation(TiXmlElement *stationElem, FEP_LINE *line) {38 LDS_LOOP *station = new LDS_LOOP;37 STATION * NetworkReader::parseStation(TiXmlElement *stationElem, FEP_LINE *line) { 38 STATION *station = new STATION; 39 39 40 40 TiXmlElement *stationSubElem = stationElem->FirstChildElement(); … … 140 140 /** 141 141 * Getter for stations 142 * @return List of LDS_LOOPs142 * @return List of STATIONs 143 143 */ 144 vector< LDS_LOOP*> NetworkReader::getStations() {144 vector<STATION*> NetworkReader::getStations() { 145 145 146 146 return stations;
Note: See TracChangeset
for help on using the changeset viewer.
