24   void SetLine(
const string & line);
 
   25   void SetLine(
const string & line, 
const string & delimiter);
 
   29   bool IsString(
int index);
 
   30   bool IsInt(
int index);
 
   31   bool IsFloat(
int index);
 
   34   const string & AsString(
int index);
 
   35   char AsChar(
int index);
 
   37   double AsFloat(
int index);
 
   59   void Open(
const string & fileName);
 
   60   bool Exists(
const string &fileName);
 
   65   bool GetLine(
string & line);
 
   66   const string & 
Line()
 const {
return m_line;}
 
   68   void LoadVector(
string &filename, vector<string> &elements);
 
   69   void LoadSet(
string &filename, set<string> &elements);
 
CMAsciiReadFileStream m_file
Definition: FileParser.h:41
 
Definition: FileParser.h:51
 
CMAsciiReadFileStream m_file
Definition: FileParser.h:72
 
const string & Line() const 
Definition: FileParser.h:66
 
Definition: FileParser.h:17
 
string m_line
Definition: FileParser.h:73
 
vector< string > m_items
Definition: FileParser.h:42