Line | |
---|
1 | /* |
---|
2 | * Copyright (C) 1996-2015 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_IPC_IODISKIOMODULE_H |
---|
10 | #define SQUID_IPC_IODISKIOMODULE_H |
---|
11 | |
---|
12 | #include "DiskIO/DiskIOModule.h" |
---|
13 | |
---|
14 | class IpcIoDiskIOModule : public DiskIOModule |
---|
15 | { |
---|
16 | |
---|
17 | public: |
---|
18 | static IpcIoDiskIOModule &GetInstance(); |
---|
19 | IpcIoDiskIOModule(); |
---|
20 | virtual void init(); |
---|
21 | virtual void gracefulShutdown(); |
---|
22 | virtual char const *type () const; |
---|
23 | virtual DiskIOStrategy* createStrategy(); |
---|
24 | |
---|
25 | private: |
---|
26 | static IpcIoDiskIOModule Instance; |
---|
27 | }; |
---|
28 | |
---|
29 | #endif /* SQUID_IPC_IODISKIOMODULE_H */ |
---|
30 | |
---|
Note: See
TracBrowser
for help on using the repository browser.