]> git.ipfire.org Git - thirdparty/squid.git/blob - src/mgr/Registration.h
Merged from trunk
[thirdparty/squid.git] / src / mgr / Registration.h
1 /*
2 * DEBUG: section 16 Cache Manager API
3 *
4 */
5
6 #ifndef SQUID_MGR_REGISTRATION_H
7 #define SQUID_MGR_REGISTRATION_H
8
9 #include "mgr/forward.h"
10 #include "typedefs.h" /* for OBJH */
11
12 namespace Mgr
13 {
14
15 void RegisterAction(char const * action, char const * desc,
16 OBJH * handler,
17 int pw_req_flag, int atomic);
18
19 void RegisterAction(char const * action, char const * desc,
20 ClassActionCreationHandler *handler,
21 int pw_req_flag, int atomic);
22
23 } // namespace Mgr
24
25 #endif /* SQUID_MGR_REGISTRATION_H */