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