00001 /* 00002 * ===================================================================================== 00003 * 00004 * Filename: ParserFactory.h 00005 * 00006 * Description: Factory for parsers 00007 * 00008 * Version: 1.0 00009 * Created: 12/22/2009 05:16:20 PM 00010 * Revision: none 00011 * Compiler: gcc 00012 * 00013 * Author: Kail (k), sickboy@anarchy.name 00014 * Company: Ergon 00015 * 00016 * ===================================================================================== 00017 */ 00018 00019 #include "../library.h" 00020 #ifndef PARSER_FACTORY_H 00021 #define PARSER_FACTORY_H 00022 00023 class ParserFactory: public AbstractParserFactory{ 00024 00025 public: 00026 AbstractParser *buildParser(const char *contenttype); 00027 }; 00028 00029 #endif
1.5.8