]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_StatHist.cc
c++-refactored statHistDump including clients and stubs
[thirdparty/squid.git] / src / tests / stub_StatHist.cc
1 #include "squid.h"
2
3 // for StatHist definitions
4 #include "StatHist.h"
5
6 void
7 statHistDump(const StatHist * H, StoreEntry * sentry, StatHistBinDumper * bd)
8 {
9 fatal("statHistDump: Not implemented");
10 }
11
12 void
13 StatHist::count(double val)
14 {
15 fatal("statHistCount: Not implemented");
16 }
17
18 void
19 statHistEnumInit(StatHist * H, int last_enum)
20 {
21 //NO-OP fatal("statHistEnumInit: Not implemented");
22 }
23
24 void
25 StatHist::dump(StoreEntry * sentry, StatHistBinDumper * bd) const
26 {
27 // noop
28 }