]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_StatHist.cc
Bug 5428: Warn if pkg-config is not found (#1902)
[thirdparty/squid.git] / src / tests / stub_StatHist.cc
CommitLineData
4e0938ef 1/*
b8ae064d 2 * Copyright (C) 1996-2023 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 16
8b082ed9
FC
17void StatHist::dump(StoreEntry *, StatHistBinDumper *) const STUB
18void StatHist::enumInit(unsigned int) STUB_NOP
614bd511 19void StatHist::count(double) {/* STUB_NOP */}
8b082ed9 20double statHistDeltaMedian(const StatHist &, const StatHist &) STUB_RETVAL(0.0)
bf95c10a 21double statHistDeltaPctile(const StatHist &, const StatHist &, double) STUB_RETVAL(0.0)
8b082ed9
FC
22void StatHist::logInit(unsigned int, double, double) STUB_NOP
23void statHistIntDumper(StoreEntry *, int, double, double, int) STUB
4541d989 24