-#ifndef WXPRECOMP
-#include "wx/wx.h"
-#endif
-
-#include "wx/filesys.h"
-
-//--------------------------------------------------------------------------------
-// wxZipFSHandler
-//--------------------------------------------------------------------------------
-
-class WXDLLEXPORT wxZipFSHandler : public wxFileSystemHandler
-{
- public:
- virtual bool CanOpen(const wxString& location);
- virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
- ~wxZipFSHandler();
-};
-
-
-#endif
- // wxUSE_FS_ZIP && wxUSE_STREAMS
-