Menu

[73c16a]: / Optimizer / Parser.h  Maximize  Restore  History

Download this file

19 lines (14 with data), 611 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#ifndef PHARSER_H_INCLUDED
#define PHARSER_H_INCLUDED
#include <vector>// For line by line reading
#include <iostream>// For line by line reading
using namespace std;// We are using the standard library
#include "Line.h"// The Line class
class Parser {// The parsing class
public:// All of the public members
Parser(FILE*);// Read a files contents
protected:// All of the protected members
vector<Line> v_Lines;// All of the lines in the file
unsigned int ui_Lines;// How many lines are in the file
};// End of the Parser class
#endif // PHARSER_H_INCLUDED
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.