Download this file
1 2 3 4 5 6 7 8
#include "Parser.h" Parser::Parser(FILE* file) { Line ln; while(ln.ReadLine(file)) { cout << ln.Text() << endl; v_Lines.push_back(ln); } }