Changeset 80 in tmcsimulator for branches/FEPSimulator/NetworkReader.cpp


Ignore:
Timestamp:
10/05/2017 03:04:40 PM (9 years ago)
Author:
jtorres
Message:

Renamed project. Renamed LDS_LOOP to STATION.

Location:
branches/FEPSimulator
Files:
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • branches/FEPSimulator/NetworkReader.cpp

    r79 r80  
    2929 
    3030/** 
    31  * Parses a station xml element into an "LDS_LOOP" 
     31 * Parses a station xml element into an "STATION" 
    3232 *  
    3333 * @param stationElem the station xml element 
     
    3535 * @return the new station 
    3636 */ 
    37 LDS_LOOP * NetworkReader::parseStation(TiXmlElement *stationElem, FEP_LINE *line) { 
    38     LDS_LOOP *station = new LDS_LOOP; 
     37STATION * NetworkReader::parseStation(TiXmlElement *stationElem, FEP_LINE *line) { 
     38    STATION *station = new STATION; 
    3939     
    4040    TiXmlElement *stationSubElem = stationElem->FirstChildElement(); 
     
    140140/** 
    141141 * Getter for stations 
    142  * @return List of LDS_LOOPs 
     142 * @return List of STATIONs 
    143143 */ 
    144 vector<LDS_LOOP*> NetworkReader::getStations() { 
     144vector<STATION*> NetworkReader::getStations() { 
    145145 
    146146    return stations; 
Note: See TracChangeset for help on using the changeset viewer.