]> git.ipfire.org Git - thirdparty/squid.git/blame - src/fs/rock/RockStoreFileSystem.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / fs / rock / RockStoreFileSystem.cc
CommitLineData
e2851fe7
AR
1/*
2 * $Id$
3 *
4 * DEBUG: section 92 Storage File System
5 */
6
f7f3304a 7#include "squid.h"
e2851fe7
AR
8#include "fs/rock/RockStoreFileSystem.h"
9#include "fs/rock/RockSwapDir.h"
10
e2851fe7
AR
11Rock::StoreFileSystem::StoreFileSystem()
12{
13 FsAdd(*this);
14}
15
16Rock::StoreFileSystem::~StoreFileSystem()
17{
18}
19
20char const *
21Rock::StoreFileSystem::type() const
22{
23 return "rock";
24}
25
26SwapDir *
27Rock::StoreFileSystem::createSwapDir()
28{
29 return new SwapDir();
30}
31
32void
33Rock::StoreFileSystem::done()
34{
35}
36
37void
38Rock::StoreFileSystem::registerWithCacheManager()
39{
40 assert(false); // XXX: implement
41}
42
43void
44Rock::StoreFileSystem::setup()
45{
46 debugs(92,2, HERE << "Will use Rock FS");
47}
48
49void
50Rock::StoreFileSystem::Stats(StoreEntry *sentry)
51{
52 assert(false); // XXX: implement
53}