]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/HierCodeData.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / acl / HierCodeData.h
1 /*
2 * Copyright (C) 1996-2021 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_ACLHIERCODEDATA_H
10 #define SQUID_ACLHIERCODEDATA_H
11
12 #include "acl/Acl.h"
13 #include "acl/Data.h"
14 #include "hier_code.h"
15
16 class ACLHierCodeData : public ACLData<hier_code>
17 {
18 MEMPROXY_CLASS(ACLHierCodeData);
19
20 public:
21 ACLHierCodeData();
22 ACLHierCodeData(ACLHierCodeData const &);
23 ACLHierCodeData &operator= (ACLHierCodeData const &);
24 virtual ~ACLHierCodeData();
25 bool match(hier_code);
26 virtual SBufList dump() const;
27 void parse();
28 bool empty() const;
29 virtual ACLData<hier_code> *clone() const;
30
31 /// mask of codes this ACL might match.
32 bool values[HIER_MAX];
33 };
34
35 #endif /* SQUID_ACLHIERCODEDATA_H */
36