source: tmcsimulator/branches/FEPSimulator/HighwaysParser.h @ 202

Revision 202, 526 bytes checked in by jtorres, 9 years ago (diff)

Further progress on condensed format reader, not all green dots showing

Line 
1/*
2 * File:   HighwaysParser.h
3 * Author: jtorres
4 *
5 * Created on October 28, 2017, 7:23 PM
6 */
7
8#ifndef HIGHWAYSPARSER_H
9#define HIGHWAYSPARSER_H
10
11#include "network.h"
12#include <vector>
13#include <iostream>
14#include <sstream>
15#include <stdio.h>
16#include "DataPacker.h"
17
18class HighwaysParser {
19public:
20    HighwaysParser(char * highwaysData);
21   
22    vector<FEP_LINE*> lines;
23    vector<STATION*> stations;
24    virtual ~HighwaysParser();
25private:
26    void parseLines(char * highwaysData);
27};
28
29#endif  /* HIGHWAYSPARSER_H */
30
Note: See TracBrowser for help on using the repository browser.