]> git.ipfire.org Git - thirdparty/squid.git/blob - src/mgr/forward.h
apply the initial Phase3 of the SMP Cache Manager patch
[thirdparty/squid.git] / src / mgr / forward.h
1 /*
2 * $Id$
3 *
4 * DEBUG: section 16 Cache Manager API
5 *
6 */
7
8 #ifndef SQUID_MGR_FORWARD_H
9 #define SQUID_MGR_FORWARD_H
10
11 #include "RefCount.h"
12
13 namespace Mgr
14 {
15
16 class Action;
17 class ActionCreator;
18 class ActionProfile;
19 class ActionWriter;
20 class Command;
21 class Request;
22 class Response;
23 class QueryParam;
24 class QueryParams;
25
26 typedef RefCount<Action> ActionPointer;
27 typedef RefCount<ActionProfile> ActionProfilePointer;
28 typedef RefCount<ActionCreator> ActionCreatorPointer;
29 typedef RefCount<Command> CommandPointer;
30
31 typedef ActionPointer (ClassActionCreationHandler)(const CommandPointer &cmd);
32
33 } // namespace Mgr
34
35 #endif /* SQUID_MGR_FORWARD_H */