Index: branches/FEPSimulator/NetworkReader.h
===================================================================
--- branches/fep_rpc_client/NetworkReader.h	(revision 79)
+++ branches/FEPSimulator/NetworkReader.h	(revision 80)
@@ -6,5 +6,5 @@
  * 
  * A NetworkReader contains two public methods 'getLines' and 'getLoops',
- * which are getters for the list of FEP_LINES, and LDS_LOOPS, respectively.
+ * which are getters for the list of FEP_LINES, and STATIONS, respectively.
  * 
  * Example XML file:
@@ -65,13 +65,13 @@
         
         vector<FEP_LINE*> getLines(); // Getter for FEP_LINE list
-        vector<LDS_LOOP*> getStations(); // Getter for LDS_LOOP list
+        vector<STATION*> getStations(); // Getter for STATION list
     private:
         vector<FEP_LINE*> lines;
-        vector<LDS_LOOP*> stations;
+        vector<STATION*> stations;
         int ldsIndex;
 
         void loadLines(const char * networkFileName);
         LOOP * parseLoop(TiXmlElement * loopElem);
-        LDS_LOOP * parseStation(TiXmlElement *stationElem, FEP_LINE *line);
+        STATION * parseStation(TiXmlElement *stationElem, FEP_LINE *line);
         FEP_LINE * parseLine(TiXmlElement *lineElem);
 };
