]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_StatHist.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / tests / stub_StatHist.cc
1 /*
2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #include "squid.h"
10 #include "StatHist.h"
11
12 #define STUB_API "StatHist.cc"
13 #include "STUB.h"
14
15 class StoreEntry;
16
17 void StatHist::dump(StoreEntry * sentry, StatHistBinDumper * bd) const STUB
18 void StatHist::enumInit(unsigned int i) STUB_NOP
19 void StatHist::count(double d) STUB_NOP
20 double statHistDeltaMedian(const StatHist & A, const StatHist & B) STUB_RETVAL(0.0)
21 double statHistDeltaPctile(const StatHist & A, const StatHist & B, double pctile) STUB_RETVAL(0.0)
22 void StatHist::logInit(unsigned int i, double d1, double d2) STUB
23 void statHistIntDumper(StoreEntry * sentry, int idx, double val, double size, int count) STUB
24