]>
Commit | Line | Data |
---|---|---|
5526e819 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: fs_zip.h | |
3 | // Purpose: ZIP file system | |
4 | // Author: Vaclav Slavik | |
5 | // Copyright: (c) 1999 Vaclav Slavik | |
6 | // Licence: wxWindows Licence | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation | |
12 | #endif | |
13 | ||
14 | #include <wx/wxprec.h> | |
15 | ||
16 | #ifdef __BORDLANDC__ | |
17 | #pragma hdrstop | |
18 | #endif | |
19 | ||
20 | #ifndef WXPRECOMP | |
21 | #include <wx/wx.h> | |
22 | #endif | |
23 | ||
24 | #include <wx/filesys.h> | |
25 | ||
26 | ||
27 | ||
28 | //-------------------------------------------------------------------------------- | |
29 | // wxZipFSHandler | |
30 | //-------------------------------------------------------------------------------- | |
31 | ||
32 | class wxZipFSHandler : public wxFileSystemHandler | |
33 | { | |
34 | public: | |
35 | virtual bool CanOpen(const wxString& location); | |
36 | virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location); | |
37 | ~wxZipFSHandler(); | |
38 | }; | |
39 | ||
40 | ||
41 |