00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef _CHINESECHARPARSER_HPP
00013 #define _CHINESECHARPARSER_HPP
00014 #include "Parser.hpp"
00015 #include "TextHandler.hpp"
00016
00021
00022 class ChineseCharParser : public Parser {
00023
00024 public:
00025 static const string identifier;
00026
00027 ChineseCharParser();
00028
00030 void parseFile (const string &filename);
00031
00033 void parseBuffer (char * buf, int len);
00034
00037 long fileTell() const;
00038
00039
00040 private:
00042 void doParse();
00043
00045 int state;
00046
00047 };
00048
00049 #endif