]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/Strategised.cc
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / acl / Strategised.cc
1 /*
2 * Copyright (C) 1996-2020 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 /* DEBUG: section 28 Access Control */
10
11 #include "squid.h"
12 #include "acl/Strategised.h"
13 #include "HttpHeader.h"
14
15 /*
16 * moved template instantiation into ACLStrategized.cc
17 * to compile on Mac OSX 10.5 Leopard.
18 * This corrects a duplicate symbol error
19 */
20
21 /* explicit template instantiation required for some systems */
22
23 /* XXX: move to ACLHTTPRepHeader or ACLHTTPReqHeader */
24 template class ACLStrategised<HttpHeader*>;
25
26 /* ACLMyPortName + ACLMyPeerName + ACLBrowser */
27 template class ACLStrategised<const char *>;
28
29 /* ACLLocalPort + ACLSslError */
30 template class ACLStrategised<int>;
31