]> git.ipfire.org Git - thirdparty/squid.git/blob - src/http/forward.h
Add missing http/forward.h
[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 class Http1Parser;
19 typedef RefCount<Http1Parser> Http1ParserPointer;
20
21 //class ParserBase;
22 //typedef RefCount<Http::ParserBase> HttpParserPointer;
23
24 } // namespace Http
25
26 #endif /* SQUID_SRC_HTTP_FORWARD_H */