Index: branches/FEPSimulator/HighwaysParser.h
===================================================================
--- branches/FEPSimulator/HighwaysParser.h	(revision 209)
+++ branches/FEPSimulator/HighwaysParser.h	(revision 233)
@@ -1,7 +1,11 @@
 /* 
  * File:   HighwaysParser.h
- * Author: jtorres
- *
- * Created on October 28, 2017, 7:23 PM
+ * 
+ * The HighwaysParser class takes in a character buffer and parses it into a 
+ * vector of FEP_LINEs and a vector of STATIONS. The buffer is sent in via the
+ * constructor and the FEP_LINE and STATION vectors are accessible via public
+ * members.
+ * 
+ * @author John A. Torres
  */
 
@@ -18,8 +22,21 @@
 class HighwaysParser {
 public:
+    /**
+     * Constructor. Takes in the character buffer to be parsed.
+     * 
+     * @param highwaysData buffer
+     */
     HighwaysParser(char * highwaysData);
+    /**
+     * Parses the buffer into FEP_LINE and STATION vectors.
+     * 
+     * @param highwaysData buffer
+     */
     void parseLines(char * highwaysData);
+    // The public lines member, containing the parsed vector of FEP_LINES
     vector<FEP_LINE*> lines;
+    // The public stations member, containing the parsed vector of STATIONS
     vector<STATION*> stations;
+    // Frees all allocated memory in the class
     virtual ~HighwaysParser();
 private:
