]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_store_stats.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / tests / stub_store_stats.cc
CommitLineData
4e0938ef 1/*
5b74111a 2 * Copyright (C) 1996-2018 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
582c2af2 9#include "squid.h"
93bc1434
AR
10
11#define STUB_API "StoreStats.cc"
12#include "tests/STUB.h"
13
14#include "StoreStats.h"
15#include <cstring>
16
17StoreInfoStats::StoreInfoStats() STUB
18
19StoreInfoStats &
20StoreInfoStats::operator +=(const StoreInfoStats &stats) STUB_RETVAL(*this)
21
22StoreIoStats::StoreIoStats()
23{
24 // we have to implement this one because tests/stub_store.cc
25 // has a StoreIoStats global
26 memset(this, 0, sizeof(*this));
27}
f53969cc 28