]>
Commit | Line | Data |
---|---|---|
3507d2d4 RD |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/fs_arc.h | |
3 | // Purpose: Archive file system | |
4 | // Author: Vaclav Slavik, Mike Wetherell | |
5 | // Copyright: (c) 1999 Vaclav Slavik, (c) 2006 Mike Wetherell | |
6 | // CVS-ID: $Id$ | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | ||
11 | class wxArchiveFSHandler : public wxFileSystemHandler | |
12 | { | |
13 | public: | |
14 | wxArchiveFSHandler(); | |
15 | virtual ~wxArchiveFSHandler(); | |
16 | void Cleanup(); | |
17 | }; | |
18 | ||
19 | ||
20 | typedef wxArchiveFSHandler wxZipFSHandler; |