]> git.ipfire.org Git - thirdparty/squid.git/blob - src/mgr/forward.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / mgr / forward.h
1 /*
2 * Copyright (C) 1996-2015 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 /* DEBUG: section 16 Cache Manager API */
10
11 #ifndef SQUID_MGR_FORWARD_H
12 #define SQUID_MGR_FORWARD_H
13
14 #include "base/RefCount.h"
15
16 namespace Mgr
17 {
18
19 class Action;
20 class ActionCreator;
21 class ActionProfile;
22 class ActionWriter;
23 class Command;
24 class Request;
25 class Response;
26 class QueryParam;
27 class QueryParams;
28
29 typedef RefCount<Action> ActionPointer;
30 typedef RefCount<ActionProfile> ActionProfilePointer;
31 typedef RefCount<ActionCreator> ActionCreatorPointer;
32 typedef RefCount<Command> CommandPointer;
33
34 typedef ActionPointer (ClassActionCreationHandler)(const CommandPointer &cmd);
35
36 } // namespace Mgr
37
38 #endif /* SQUID_MGR_FORWARD_H */
39