/* * 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_ACLINTRANGE_H #define SQUID_ACLINTRANGE_H #include "acl/Data.h" #include "base/Range.h" #include class ACLIntRange : public ACLData { public: ACLIntRange() {} virtual ~ACLIntRange(); virtual bool match(int); virtual SBufList dump() const; virtual void parse(); virtual bool empty() const; virtual ACLData *clone() const; private: typedef Range RangeType; std::list ranges; }; #endif /* SQUID_ACLINTRANGE_H */