]> git.ipfire.org Git - thirdparty/squid.git/blame - src/fs/rock/RockStoreFileSystem.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / fs / rock / RockStoreFileSystem.h
CommitLineData
bbc27441 1/*
77b1029d 2 * Copyright (C) 1996-2020 The Squid Software Foundation and contributors
bbc27441
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
e2851fe7
AR
9#ifndef SQUID_FS_ROCK_FS_H
10#define SQUID_FS_ROCK_FS_H
11
12#include "StoreFileSystem.h"
13
582c2af2 14class StoreEntry;
9199139f
AR
15namespace Rock
16{
e2851fe7
AR
17
18/// \ingroup Rock, FileSystems
19class StoreFileSystem: public ::StoreFileSystem
20{
21
22public:
23 static void Stats(StoreEntry * sentry);
24
25 StoreFileSystem();
26 virtual ~StoreFileSystem();
27
28 virtual char const *type() const;
29 virtual SwapDir *createSwapDir();
30 virtual void done();
31 virtual void registerWithCacheManager();
32 virtual void setup();
33
34private:
35 //static Stats Stats_;
36
37 StoreFileSystem(const StoreFileSystem &); // not implemented
38 StoreFileSystem &operator=(const StoreFileSystem &); // not implemented
39};
40
41} // namespace Rock
42
43#endif /* SQUID_FS_ROCK_FS_H */
f53969cc 44