Download this file
9 lines (8 with data), 175 Bytes
| #include "Parser.h"
Parser::Parser(FILE* file) {
Line ln;
while(ln.ReadLine(file)) {
cout << ln.Text() << endl;
v_Lines.push_back(ln);
}
}
|
×
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.