]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/UrlPath.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / acl / UrlPath.h
1 /*
2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
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_ACLURLPATH_H
10 #define SQUID_ACLURLPATH_H
11 #include "acl/Acl.h"
12 #include "acl/Data.h"
13 #include "acl/Strategised.h"
14 #include "acl/Strategy.h"
15
16 class ACLUrlPathStrategy : public ACLStrategy<char const *>
17 {
18
19 public:
20 virtual int match (ACLData<char const *> * &, ACLFilledChecklist *, ACLFlags &);
21 virtual bool requiresRequest() const {return true;}
22
23 static ACLUrlPathStrategy *Instance();
24 /* Not implemented to prevent copies of the instance. */
25 /* Not private to prevent brain dead g+++ warnings about
26 * private constructors with no friends */
27 ACLUrlPathStrategy(ACLUrlPathStrategy const &);
28
29 private:
30 static ACLUrlPathStrategy Instance_;
31 ACLUrlPathStrategy() {}
32
33 ACLUrlPathStrategy&operator=(ACLUrlPathStrategy const &);
34 };
35
36 class ACLUrlPath
37 {
38
39 public:
40 static ACL::Prototype RegistryProtoype;
41 static ACL::Prototype LegacyRegistryProtoype;
42 static ACLStrategised<char const *> RegistryEntry_;
43 };
44
45 #endif /* SQUID_ACLURLPATH_H */
46