]>
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 | ||
54c45be0 RD |
10 | /** |
11 | @class wxArchiveFSHandler | |
3507d2d4 | 12 | |
54c45be0 RD |
13 | A file system handler for accessing files inside of archives. |
14 | */ | |
3507d2d4 RD |
15 | class wxArchiveFSHandler : public wxFileSystemHandler |
16 | { | |
17 | public: | |
18 | wxArchiveFSHandler(); | |
19 | virtual ~wxArchiveFSHandler(); | |
20 | void Cleanup(); | |
21 | }; | |
22 | ||
23 | ||
24 | typedef wxArchiveFSHandler wxZipFSHandler; |