]> git.ipfire.org Git - thirdparty/squid.git/blame - src/base/forward.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / base / forward.h
CommitLineData
55622953 1/*
77b1029d 2 * Copyright (C) 1996-2020 The Squid Software Foundation and contributors
55622953
CT
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_BASE_FORWARD_H
10#define SQUID_SRC_BASE_FORWARD_H
11
ccfbe8f4
AR
12class AsyncCallQueue;
13class AsyncJob;
14class CallDialer;
15class CodeContext;
16class ScopedId;
17
55622953 18template<class Cbc> class CbcPointer;
ccfbe8f4 19template<class RefCountableKid> class RefCount;
55622953 20
55622953 21typedef CbcPointer<AsyncJob> AsyncJobPointer;
ccfbe8f4 22typedef RefCount<CodeContext> CodeContextPointer;
55622953
CT
23
24#endif /* SQUID_SRC_BASE_FORWARD_H */
25