]> git.ipfire.org Git - thirdparty/squid.git/blame - src/sbuf/forward.h
add sbuf/forward.h
[thirdparty/squid.git] / src / sbuf / forward.h
CommitLineData
2a909130
FC
1/*
2 * Copyright (C) 1996-2016 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
15class MemBlob;
16
17class SBuf;
18class SBufIterator;
19class SBufReverseIterator;
20
21class OutOfBoundsException;
22class InvalidParamException;
23class SBufTooBigException;
24
25class SBufStats;
26typedef std::list<SBuf> SBufList;
27
28class SBufEqual;
29class SBufStartsWith;
30class SBufAddLength;
31namespace std {
32template <> struct hash<SBuf>;
33}
34class CaseInsensitiveSBufHash;
35
36#endif /* SQUID_SRC_SBUF_FORWARD_H */
37