]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_StatHist.cc
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / tests / stub_StatHist.cc
CommitLineData
4e0938ef 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
4e0938ef
AJ
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
f7f3304a 9#include "squid.h"
00a7574e 10#include "StatHist.h"
0f9db2d6 11
d3546528 12#define STUB_API "StatHist.cc"
44e802f4 13#include "tests/STUB.h"
4541d989
FC
14
15class StoreEntry;
d3546528
FC
16
17void StatHist::dump(StoreEntry * sentry, StatHistBinDumper * bd) const STUB
18void StatHist::enumInit(unsigned int i) STUB_NOP
614bd511 19void StatHist::count(double) {/* STUB_NOP */}
d3546528
FC
20double statHistDeltaMedian(const StatHist & A, const StatHist & B) STUB_RETVAL(0.0)
21double statHistDeltaPctile(const StatHist & A, const StatHist & B, double pctile) STUB_RETVAL(0.0)
c1a2df00 22void StatHist::logInit(unsigned int i, double d1, double d2) STUB_NOP
d3546528 23void statHistIntDumper(StoreEntry * sentry, int idx, double val, double size, int count) STUB
4541d989 24