]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/DelayPools.h
Prep for 3.3.12 and 3.4.4
[thirdparty/squid.git] / src / DelayPools.h
index 8e94af3a5104a9819ec08a2bbf69d7cca5d8d927..182df498a8f74e5e60b16be6186ddcc25de0a962 100644 (file)
@@ -1,7 +1,4 @@
-
 /*
- * $Id: DelayPools.h,v 1.3 2003/03/04 01:40:25 robertc Exp $
- *
  *
  * 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.
  *
  * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
  */
-
 #ifndef SQUID_DELAYPOOLS_H
 #define SQUID_DELAYPOOLS_H
 
-#include "Array.h"
+#include <vector>
 
+class DelayPool;
+class Updateable;
+class StoreEntry;
+
+/**
+ \defgroup DelayPoolsAPI Delay Pools API
+ \ingroup Components
+ */
+
+/// \ingroup DelayPoolsAPI
 class Updateable
 {
 
 public:
-    virtual ~Updateable(){}
+    virtual ~Updateable() {}
 
     virtual void update(int) = 0;
 };
 
-class DelayPool;
-
+/// \ingroup DelayPoolsAPI
 class DelayPools
 {
 
@@ -56,7 +61,7 @@ public:
     static void Init();
     static void Update(void *);
     static unsigned short pools();
-    static void pools (u_short pools);
+    static void pools(unsigned short pools);
     static void FreePools();
     static unsigned char *DelayClasses();
     static void registerForUpdates(Updateable *);
@@ -70,7 +75,8 @@ private:
     static time_t LastUpdate;
     static unsigned short pools_;
     static void FreeDelayData ();
-    static Vector<Updateable *> toUpdate;
+    static std::vector<Updateable *> toUpdate;
+    static void RegisterWithCacheManager(void);
 };
 
 #endif /* SQUID_DELAYPOOLS_H */