/* * Copyright (C) 1996-2017 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 { public: MEMPROXY_CLASS(AnyOf); /* ACL API */ virtual char const *typeString() const; virtual ACL *clone() const; virtual void parse(); private: static Prototype RegistryProtoype; static AnyOf RegistryEntry_; }; MEMPROXY_CLASS_INLINE(Acl::AnyOf); } // namespace Acl #endif /* SQUID_ACL_ANY_OF_H */