/* * Copyright (C) 1996-2023 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ #ifndef SQUID_ACL_ANY_OF_H #define SQUID_ACL_ANY_OF_H #include "acl/BoolOps.h" namespace Acl { /// Configurable any-of ACL. Each ACL line is a disjuction of ACLs. class AnyOf: public Acl::OrNode { MEMPROXY_CLASS(AnyOf); public: /* ACL API */ virtual char const *typeString() const; virtual ACL *clone() const; virtual void parse(); }; } // namespace Acl #endif /* SQUID_ACL_ANY_OF_H */