00001 #ifndef LINE_PARSER_H 00002 #define LINE_PARSER_H 00003 #include <string> 00004 00005 class LineParser 00006 { 00007 std::string str; 00008 00009 void SkipBlank(); 00010 public: 00011 LineParser(std::string _str); 00012 00013 bool GetInt(int& nbr); 00014 bool GetString(std::string &sub); 00015 }; 00016 00017 #endif
1.5.8