]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/FadingCounter.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / FadingCounter.h
index 2d10bd427c4ff1b42a1eaccc0b97350c71a45cf0..535deff1718a8f436ec98b5e993062488fa741cb 100644 (file)
@@ -1,11 +1,15 @@
 /*
- * $Id$
+ * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
+ *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
  */
 
 #ifndef SQUID_FADING_COUNTER_H
 #define SQUID_FADING_COUNTER_H
 
-#include "Array.h"
+#include <vector>
 
 /// Counts events, forgetting old ones. Usefull for "3 errors/minute" limits.
 class FadingCounter
@@ -29,8 +33,9 @@ private:
     double delta; ///< sub-interval duration = horizon/precision
 
     double lastTime; ///< time of the last update
-    Vector<int> counters; ///< events per delta (possibly stale)
+    std::vector<int> counters; ///< events per delta (possibly stale)
     int total; ///< number of remembered events (possibly stale)
 };
 
 #endif /* SQUID_FADING_COUNTER_H */
+