]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/RemovalPolicy.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / RemovalPolicy.h
index 7424d950171d676ae7f99e5ce0270235d4c78b63..00a825e8fa0dd2f47a5ffbc17f99db2baa1f01fe 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: RemovalPolicy.h,v 1.1 2006/08/21 00:50:41 robertc Exp $
+ * $Id$
  *
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 2 of the License, or
  *  (at your option) any later version.
- *  
+ *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
- *  
+ *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
@@ -35,7 +35,6 @@
 #ifndef   SQUID_REMOVALPOLICY_H
 #define   SQUID_REMOVALPOLICY_H
 
-#include "squid.h"
 #include "cbdata.h"
 
 class RemovalPolicyWalker;
@@ -62,7 +61,7 @@ public:
 
 class RemovalPolicy
 {
-  public:
+public:
     const char *_type;
     void *_data;
     void (*Free) (RemovalPolicy * policy);
@@ -73,30 +72,30 @@ class RemovalPolicy
     RemovalPolicyWalker *(*WalkInit) (RemovalPolicy * policy);
     RemovalPurgeWalker *(*PurgeInit) (RemovalPolicy * policy, int max_scan);
     void (*Stats) (RemovalPolicy * policy, StoreEntry * entry);
-  private:
+private:
     CBDATA_CLASS2(RemovalPolicy);
 };
 
 class RemovalPolicyWalker
 {
-  public:
+public:
     RemovalPolicy *_policy;
     void *_data;
     const StoreEntry *(*Next) (RemovalPolicyWalker * walker);
     void (*Done) (RemovalPolicyWalker * walker);
-  private:
+private:
     CBDATA_CLASS2(RemovalPolicyWalker);
 };
 
 class RemovalPurgeWalker
 {
-  public:
+public:
     RemovalPolicy *_policy;
     void *_data;
     int scanned, max_scan, locked;
     StoreEntry *(*Next) (RemovalPurgeWalker * walker);
     void (*Done) (RemovalPurgeWalker * walker);
-  private:
+private:
     CBDATA_CLASS2(RemovalPurgeWalker);
 };
 
@@ -104,5 +103,4 @@ extern RemovalPolicy *createRemovalPolicy(RemovalPolicySettings * settings);
 
 typedef RemovalPolicy *REMOVALPOLICYCREATE(wordlist * args);
 
-
 #endif /* SQUID_REMOVALPOLICY_H */