00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #include "Parser.hpp"
00013 #include "TextHandler.hpp"
00014
00015 #ifndef _REUTERSPARSER_HPP
00016 #define _REUTERSPARSER_HPP
00017
00029
00030
00031
00032 class ReutersParser : public Parser {
00033
00034 public:
00035 static const string identifier;
00036
00037 ReutersParser();
00038
00040 void parseFile (const string &filename);
00041 void parseBuffer (char * buf, int len);
00042 long fileTell()const;
00043
00044 private:
00046 void doParse();
00047
00049 int state;
00050
00051 };
00052
00053 #endif