]> git.ipfire.org Git - thirdparty/squid.git/blame - src/mgr/Registration.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / mgr / Registration.h
CommitLineData
8822ebee 1/*
bbc27441 2 * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
8822ebee 3 *
bbc27441
AJ
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.
8822ebee
AR
7 */
8
bbc27441
AJ
9/* DEBUG: section 16 Cache Manager API */
10
8822ebee
AR
11#ifndef SQUID_MGR_REGISTRATION_H
12#define SQUID_MGR_REGISTRATION_H
13
14#include "mgr/forward.h"
15#include "typedefs.h" /* for OBJH */
16
17namespace Mgr
18{
19
20void RegisterAction(char const * action, char const * desc,
d9fc6862
A
21 OBJH * handler,
22 int pw_req_flag, int atomic);
8822ebee
AR
23
24void RegisterAction(char const * action, char const * desc,
d9fc6862
A
25 ClassActionCreationHandler *handler,
26 int pw_req_flag, int atomic);
8822ebee
AR
27
28} // namespace Mgr
29
30#endif /* SQUID_MGR_REGISTRATION_H */
f53969cc 31