]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_store_stats.cc
Renamed squid.h to squid-old.h and config.h to squid.h
[thirdparty/squid.git] / src / tests / stub_store_stats.cc
CommitLineData
f7f3304a 1#include "squid-old.h"
93bc1434
AR
2
3#define STUB_API "StoreStats.cc"
4#include "tests/STUB.h"
5
6#include "StoreStats.h"
7#include <cstring>
8
9StoreInfoStats::StoreInfoStats() STUB
10
11StoreInfoStats &
12StoreInfoStats::operator +=(const StoreInfoStats &stats) STUB_RETVAL(*this)
13
14StoreIoStats::StoreIoStats()
15{
16 // we have to implement this one because tests/stub_store.cc
17 // has a StoreIoStats global
18 memset(this, 0, sizeof(*this));
19}