]> git.ipfire.org Git - thirdparty/squid.git/blame - src/acl/Time.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / acl / Time.h
CommitLineData
5dee515e 1/*
77b1029d 2 * Copyright (C) 1996-2020 The Squid Software Foundation and contributors
5dee515e 3 *
bbc27441
AJ
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.
5dee515e 7 */
8
9#ifndef SQUID_ACLTIME_H
10#define SQUID_ACLTIME_H
c0941a6a
AR
11#include "acl/Data.h"
12#include "acl/Strategised.h"
13
b0dd28ba 14class ACLTimeStrategy : public ACLStrategy<time_t>
5dee515e 15{
62e76326 16
17public:
4eac3407 18 virtual int match (ACLData<MatchType> * &, ACLFilledChecklist *) override;
5dee515e 19};
20
21#endif /* SQUID_ACLTIME_H */
f53969cc 22