#ifndef LINE_H_INCLUDED
#define LINE_H_INCLUDED
#include <vector>// For line by line reading
#include <iostream>// For line by line reading
#include <cstdio>// For line by line reading
using namespace std;// We are using the standard library
class Line {// Defines a line in the file
public:// All of the public members
bool ReadLine(FILE*);// Reads the next line from a file
inline string Text(void) { return s_Text; }// Gets the whole text of the line
protected:// All of the protected members
string s_Text;// The whole text of the line
vector<string> vs_Segments;// The segments of the text
};// End of the line class
#endif // LINE_H_INCLUDED