00001 /*========================================================================== 00002 * Copyright (c) 2001 Carnegie Mellon University. All Rights Reserved. 00003 * 00004 * Use of the Lemur Toolkit for Language Modeling and Information Retrieval 00005 * is subject to the terms of the software license set forth in the LICENSE 00006 * file included with this software, and also available at 00007 * http://www.cs.cmu.edu/~lemur/license.html 00008 * 00009 *========================================================================== 00010 */ 00011 00012 #include "Parser.hpp" 00013 #include "TextHandler.hpp" 00014 00015 #ifndef _REUTERSPARSER_HPP 00016 #define _REUTERSPARSER_HPP 00017 00029 00030 // Source code in reutersparser.lex 00031 00032 class ReutersParser : public Parser { 00033 00034 public: 00035 ReutersParser(); 00036 00038 void parseFile (char * filename); 00039 void parseBuffer (char * buf, int len); 00040 long fileTell(); 00041 00042 private: 00044 void doParse(); 00045 00047 int state; 00048 00049 }; 00050 00051 #endif