]> git.ipfire.org Git - thirdparty/squid.git/blob - src/fs/rock/RockStoreFileSystem.h
mkrelease: allow two digits for minor release numbers (#1837)
[thirdparty/squid.git] / src / fs / rock / RockStoreFileSystem.h
1 /*
2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
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
9 #ifndef SQUID_SRC_FS_ROCK_ROCKSTOREFILESYSTEM_H
10 #define SQUID_SRC_FS_ROCK_ROCKSTOREFILESYSTEM_H
11
12 #include "StoreFileSystem.h"
13
14 class StoreEntry;
15 namespace Rock
16 {
17
18 /// \ingroup Rock, FileSystems
19 class StoreFileSystem: public ::StoreFileSystem
20 {
21
22 public:
23 static void Stats(StoreEntry * sentry);
24
25 StoreFileSystem();
26 ~StoreFileSystem() override;
27
28 /* StoreFileSystem API */
29 char const *type() const override;
30 SwapDir *createSwapDir() override;
31
32 private:
33 //static Stats Stats_;
34
35 StoreFileSystem(const StoreFileSystem &); // not implemented
36 StoreFileSystem &operator=(const StoreFileSystem &); // not implemented
37 };
38
39 } // namespace Rock
40
41 #endif /* SQUID_SRC_FS_ROCK_ROCKSTOREFILESYSTEM_H */
42