2012年7月5日

CUrl

摘要: 1 #ifndef _URL_H_030728_ 2 #define _URL_H_030728_ 3 4 #include <string> 5 6 const unsigned int URL_LEN = 256; 7 const unsigned int HOST_LEN = 256; 8 9 using namespace std;10 11 12 enum url_scheme {13 SCHEME_HTTP,14 SCHEME_FTP,15 SCHEME_INVALID16 };17 18 const int DEFAULT_HTTP_P... 阅读全文

posted @ 2012-07-05 21:09 kakamilan 阅读(725) 评论(0) 推荐(0) 编辑

CPage

摘要: 1 #ifndef _Page_H_030728_ 2 #define _Page_H_030728_ 3 4 #include <string> 5 #include <map> 6 #include <vector> 7 #include <list> 8 #include "Url.h" 9 #include "list.h" 10 #include "uri.h" 11 #include "hlink.h" 12 13 14 //large enough to 阅读全文

posted @ 2012-07-05 15:00 kakamilan 阅读(2498) 评论(0) 推荐(0) 编辑

导航