纯C++的Socket访问Http封装类(二)

2014-11-22 12:20:26 · 作者: · 浏览: 64


  7


  8 #include "stdafx.h"


  9 #include "Request.h"


  10 #include


  11 #ifdef _DEBUG


  12 #undef THIS_FILE


  13 static char THIS_FILE[]=__FILE__;


  14 #define new DEBUG_NEW


  15 #endif


  16


  17


  18 //////////////////////////////////////////////////////////////////////


  19 // Construction/Destruction


  20 //////////////////////////////////////////////////////////////////////


  21


  22 Request::Request()


  23 {


  24


  25 }


  26


  27 Request::~Request()


  28 {


  29


  30 }


  31


  32