]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/forward.h
C++11: Remove GnuRegex and all -lregex related code
[thirdparty/squid.git] / src / acl / forward.h
1 /*
2 * Copyright (C) 1996-2016 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_ACL_FORWARD_H
10 #define SQUID_ACL_FORWARD_H
11
12 #include "base/RefCount.h"
13
14 class ACL;
15 class ACLChecklist;
16 class ACLFilledChecklist;
17 class ACLList;
18
19 class AclDenyInfoList;
20 class AclSizeLimit;
21
22 namespace Acl
23 {
24
25 class Address;
26 class InnerNode;
27 class NotNode;
28 class AndNode;
29 class OrNode;
30 class Tree;
31
32 } // namespace Acl
33
34 class allow_t;
35 typedef void ACLCB(allow_t, void *);
36
37 #define ACL_NAME_SZ 64
38
39 // TODO: Consider renaming all users and removing. Cons: hides the difference
40 // between ACLList tree without actions and acl_access Tree with actions.
41 #define acl_access Acl::Tree
42 #define ACLList Acl::Tree
43
44 class ExternalACLEntry;
45 typedef RefCount<ExternalACLEntry> ExternalACLEntryPointer;
46
47 #endif /* SQUID_ACL_FORWARD_H */
48