]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/SquidError.h
Maintenance: automate header guards 2/3 (#1655)
[thirdparty/squid.git] / src / acl / SquidError.h
CommitLineData
3248e962 1/*
b8ae064d 2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
3248e962
CT
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
ff9d9458
FC
9#ifndef SQUID_SRC_ACL_SQUIDERROR_H
10#define SQUID_SRC_ACL_SQUIDERROR_H
3248e962 11
8319d478
AR
12#include "acl/Data.h"
13#include "acl/ParameterizedNode.h"
83b053a0 14#include "error/forward.h"
3248e962 15
8319d478 16namespace Acl
3248e962
CT
17{
18
8319d478
AR
19/// a "squid_error" ACL
20class SquidErrorCheck: public ParameterizedNode< ACLData<err_type> >
21{
3248e962 22public:
922513e5 23 /* Acl::Node API */
8319d478 24 int match(ACLChecklist *) override;
3248e962
CT
25};
26
8319d478
AR
27} // namespace Acl
28
ff9d9458 29#endif /* SQUID_SRC_ACL_SQUIDERROR_H */
44352c16 30