]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ip/forward.h
Merge from trunk
[thirdparty/squid.git] / src / ip / forward.h
1 /*
2 * DEBUG: section 14 IP Storage and Handling
3 * AUTHOR: Henrik Nordstrom
4 *
5 * SQUID Internet Object Cache http://squid.nlanr.net/Squid/
6 * ----------------------------------------------------------
7 *
8 * Squid is the result of efforts by numerous individuals from the
9 * Internet community. Development is led by Duane Wessels of the
10 * National Laboratory for Applied Network Research and funded by the
11 * National Science Foundation. Squid is Copyrighted (C) 1998 by
12 * the Regents of the University of California. Please see the
13 * COPYRIGHT file for full details. Squid incorporates software
14 * developed and/or copyrighted by other sources. Please see the
15 * CREDITS file for full details.
16 *
17 * This wrapper code is copyright (C) 2010 by Henrik Nordstrom
18 * It is published and Lisenced as an extension of squid under the
19 * same conditions as the main squid application.
20 *
21 * This program is free software; you can redistribute it and/or modify
22 * it under the terms of the GNU General Public License as published by
23 * the Free Software Foundation; either version 2 of the License, or
24 * (at your option) any later version.
25 *
26 * This program is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
30 *
31 * You should have received a copy of the GNU General Public License
32 * along with this program; if not, write to the Free Software
33 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
34 *
35 */
36 #ifndef _SQUID_IP_FORWARD_H
37 #define _SQUID_IP_FORWARD_H
38
39 // Forward-declare Ip classes needed by reference in other parts of the code
40 // for passing objects around without actually touching them
41 namespace Ip
42 {
43 class Address;
44 }
45 #endif /* _SQUID_IP_FORWARD_H */