]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/SquidErrorData.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / acl / SquidErrorData.h
CommitLineData
3248e962 1/*
4ac4a490 2 * Copyright (C) 1996-2017 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
9#ifndef SQUID_ACLSQUIDERRORDATA_H
10#define SQUID_ACLSQUIDERRORDATA_H
11
12#include "acl/Data.h"
13#include "base/CbDataList.h"
14#include "err_type.h"
15
16/// \ingroup ACLAPI
17class ACLSquidErrorData : public ACLData<err_type>
18{
19
20public:
21 ACLSquidErrorData(): ACLData<err_type>() {};
22
23 virtual ~ACLSquidErrorData() {}
24 virtual bool match(err_type err);
25 virtual SBufList dump() const;
26 virtual void parse();
27 virtual bool empty() const;
28 virtual ACLData<err_type> *clone() const;
29
30private:
31 CbDataListContainer <err_type> errors;
32};
33
34#endif //SQUID_ACLSQUIDERRORDATA_H
44352c16 35