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