00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include "../library.h"
00020 #ifndef ABSTRACT_PARSER_H
00021 #define ABSTRACT_PARSER_H
00022
00023 class RequestData;
00024
00025 class AbstractParser{
00026 protected:
00027
00028 AbstractParser();
00029 public:
00030 static int unescape(char *s);
00031 virtual bool parse(RequestData *repository, char *buffer, int length) = 0;
00032 virtual ~AbstractParser();
00033
00034 };
00035
00036 #endif