]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/FadingCounter.h
Maintenance: automate header guards 2/3 (#1655)
[thirdparty/squid.git] / src / FadingCounter.h
index 9430ef14f68ce0d5aa7d5e371051be4c8f8aa8d1..e28ef31c235b781cb1e557fe70e0217b3827378f 100644 (file)
@@ -1,9 +1,17 @@
-#ifndef SQUID_FADING_COUNTER_H
-#define SQUID_FADING_COUNTER_H
+/*
+ * Copyright (C) 1996-2023 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.
+ */
 
-#include "base/Vector.h"
+#ifndef SQUID_SRC_FADINGCOUNTER_H
+#define SQUID_SRC_FADINGCOUNTER_H
 
-/// Counts events, forgetting old ones. Usefull for "3 errors/minute" limits.
+#include <vector>
+
+/// Counts events, forgetting old ones. Useful for "3 errors/minute" limits.
 class FadingCounter
 {
 public:
@@ -21,12 +29,13 @@ public:
     double horizon;
 
 private:
-    const int precision; ///< #counting slots, controls measur. occuracy
+    const int precision; ///< #counting slots, controls measur. accuracy
     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 */
+#endif /* SQUID_SRC_FADINGCOUNTER_H */
+