]> git.ipfire.org Git - thirdparty/squid.git/blob - src/sbuf/forward.h
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / sbuf / forward.h
1 /*
2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #ifndef SQUID_SRC_SBUF_FORWARD_H
10 #define SQUID_SRC_SBUF_FORWARD_H
11
12 #include <functional>
13 #include <list>
14
15 class MemBlob;
16
17 class SBuf;
18 class SBufIterator;
19 class SBufReverseIterator;
20 class SBufReservationRequirements;
21
22 class OutOfBoundsException;
23 class InvalidParamException;
24 class SBufTooBigException;
25
26 class SBufStats;
27 typedef std::list<SBuf> SBufList;
28
29 class SBufEqual;
30 class SBufStartsWith;
31 class SBufAddLength;
32 namespace std {
33 template <> struct hash<SBuf>;
34 }
35 class CaseInsensitiveSBufHash;
36
37 #endif /* SQUID_SRC_SBUF_FORWARD_H */
38