From: Alex Rousskov Date: Sat, 11 Sep 2010 23:58:15 +0000 (-0600) Subject: Added Pointer typedefs. X-Git-Tag: take1~275 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f3630c679fd4f86fec1137378d140dee485f182c;p=thirdparty%2Fsquid.git Added Pointer typedefs. --- diff --git a/src/HttpReply.h b/src/HttpReply.h index ca2a5d5b21..d44be465ec 100644 --- a/src/HttpReply.h +++ b/src/HttpReply.h @@ -52,6 +52,8 @@ class HttpReply: public HttpMsg { public: + typedef HttpMsgPointerT Pointer; + MEMPROXY_CLASS(HttpReply); HttpReply(); ~HttpReply(); diff --git a/src/HttpRequest.h b/src/HttpRequest.h index fa38bb0a72..447bb22017 100644 --- a/src/HttpRequest.h +++ b/src/HttpRequest.h @@ -71,6 +71,8 @@ class HttpRequest: public HttpMsg { public: + typedef HttpMsgPointerT Pointer; + MEMPROXY_CLASS(HttpRequest); HttpRequest(); HttpRequest(const HttpRequestMethod& aMethod, protocol_t aProtocol, const char *aUrlpath);