]> git.ipfire.org Git - thirdparty/squid.git/blob - src/http/forward.h
Merge from trunk
[thirdparty/squid.git] / src / http / forward.h
1 #ifndef SQUID_SRC_HTTP_FORWARD_H
2 #define SQUID_SRC_HTTP_FORWARD_H
3
4 #include "base/RefCount.h"
5
6 // TODO move these classes into Http namespace
7 class HttpRequestMethod;
8 typedef RefCount<HttpRequestMethod> HttpRequestMethodPointer;
9
10 class HttpRequest;
11 typedef RefCount<HttpRequest> HttpRequestPointer;
12
13 class HttpReply;
14 typedef RefCount<HttpReply> HttpReplyPointer;
15
16 namespace Http {
17
18 namespace One {
19 class RequestParser;
20 typedef RefCount<Http::One::RequestParser> RequestParserPointer;
21 } // namespace One
22
23 } // namespace Http
24
25 namespace Http1 = Http::One;
26
27 #endif /* SQUID_SRC_HTTP_FORWARD_H */