]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_MemStore.cc
Renamed squid.h to squid-old.h and config.h to squid.h
[thirdparty/squid.git] / src / tests / stub_MemStore.cc
CommitLineData
d5d5493b
DK
1/*
2 * $Id$
3 *
4 * DEBUG: section 84 Helper process maintenance
5 *
6 */
7
f7f3304a 8#include "squid.h"
d5d5493b
DK
9#include "MemStore.h"
10
11#define STUB_API "MemStore.cc"
12#include "tests/STUB.h"
13
14MemStore::MemStore() STUB
15MemStore::~MemStore() STUB
16void MemStore::considerKeeping(StoreEntry &) STUB
17void MemStore::reference(StoreEntry &) STUB
18void MemStore::maintain() STUB
19void MemStore::cleanReadable(const sfileno) STUB
20void MemStore::get(String const, STOREGETCLIENT, void *) STUB
21void MemStore::init() STUB
93bc1434 22void MemStore::getStats(StoreInfoStats&) const STUB
d5d5493b 23void MemStore::stat(StoreEntry &) const STUB
0317d711
AR
24int MemStore::callback() STUB_RETVAL(0)
25StoreEntry *MemStore::get(const cache_key *) STUB_RETVAL(NULL)
26uint64_t MemStore::maxSize() const STUB_RETVAL(0)
27uint64_t MemStore::minSize() const STUB_RETVAL(0)
28uint64_t MemStore::currentSize() const STUB_RETVAL(0)
29uint64_t MemStore::currentCount() const STUB_RETVAL(0)
30int64_t MemStore::maxObjectSize() const STUB_RETVAL(0)
31StoreSearch *MemStore::search(String const, HttpRequest *) STUB_RETVAL(NULL)
32bool MemStore::dereference(StoreEntry &) STUB_RETVAL(false)