00001 /* 00002 * ===================================================================================== 00003 * 00004 * Filename: URLEncodeParser.h 00005 * 00006 * Description: Parser for URL encoded content type 00007 * 00008 * Version: 1.0 00009 * Created: 12/22/2009 05:50:52 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 URLENCODEPARSER_H 00021 #define URLENCODEPARSER_H 00022 00023 class URLEncodeParser: public AbstractParser{ 00024 00025 public: 00026 bool parse(RequestData *repository, char *buffer, int length); 00027 00028 }; 00029 00030 #endif
1.5.8