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


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.h

    r79 r80  
    66 *  
    77 * A NetworkReader contains two public methods 'getLines' and 'getLoops', 
    8  * which are getters for the list of FEP_LINES, and LDS_LOOPS, respectively. 
     8 * which are getters for the list of FEP_LINES, and STATIONS, respectively. 
    99 *  
    1010 * Example XML file: 
     
    6565         
    6666        vector<FEP_LINE*> getLines(); // Getter for FEP_LINE list 
    67         vector<LDS_LOOP*> getStations(); // Getter for LDS_LOOP list 
     67        vector<STATION*> getStations(); // Getter for STATION list 
    6868    private: 
    6969        vector<FEP_LINE*> lines; 
    70         vector<LDS_LOOP*> stations; 
     70        vector<STATION*> stations; 
    7171        int ldsIndex; 
    7272 
    7373        void loadLines(const char * networkFileName); 
    7474        LOOP * parseLoop(TiXmlElement * loopElem); 
    75         LDS_LOOP * parseStation(TiXmlElement *stationElem, FEP_LINE *line); 
     75        STATION * parseStation(TiXmlElement *stationElem, FEP_LINE *line); 
    7676        FEP_LINE * parseLine(TiXmlElement *lineElem); 
    7777}; 
Note: See TracChangeset for help on using the changeset viewer.