]> git.ipfire.org Git - thirdparty/squid.git/blame - src/sbuf/forward.h
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / sbuf / forward.h
CommitLineData
2a909130 1/*
b8ae064d 2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
2a909130
FC
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;
19e97cf0 20class SBufReservationRequirements;
2a909130 21
2a909130
FC
22class SBufStats;
23typedef std::list<SBuf> SBufList;
24
25class SBufEqual;
26class SBufStartsWith;
27class SBufAddLength;
28namespace std {
29template <> struct hash<SBuf>;
30}
31class CaseInsensitiveSBufHash;
32
33#endif /* SQUID_SRC_SBUF_FORWARD_H */
34