]> git.ipfire.org Git - thirdparty/squid.git/blame_incremental - src/adaptation/forward.h
Simplify appending SBuf to String (#2108)
[thirdparty/squid.git] / src / adaptation / forward.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 1996-2025 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_ADAPTATION_FORWARD_H
10#define SQUID_SRC_ADAPTATION_FORWARD_H
11
12// forward-declarations for commonly used adaptation classes
13
14template <class C>
15class RefCount;
16
17namespace Adaptation
18{
19
20class Service;
21class ServiceConfig;
22class DynamicGroupCfg;
23class Class;
24class Initiate;
25class Initiator;
26class AccessCheck;
27class AccessRule;
28class ServiceGroup;
29class ServicePlan;
30class ServiceFilter;
31class Message;
32class Answer;
33
34typedef RefCount<Service> ServicePointer;
35typedef RefCount<ServiceConfig> ServiceConfigPointer;
36typedef RefCount<ServiceGroup> ServiceGroupPointer;
37
38} // namespace Adaptation
39
40#endif /* SQUID_SRC_ADAPTATION_FORWARD_H */
41