X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c3f4609ebb56f76065c28352d8db37f65a6fa35e..19e30148e18cc99296b26503c155e5cef59045f4:/include/wx/fs_zip.h diff --git a/include/wx/fs_zip.h b/include/wx/fs_zip.h index 27ccee6f1a..960a1fd1a5 100644 --- a/include/wx/fs_zip.h +++ b/include/wx/fs_zip.h @@ -7,6 +7,8 @@ // Licence: wxWindows Licence ///////////////////////////////////////////////////////////////////////////// +#ifndef _WX_FS_ZIP_H_ +#define _WX_FS_ZIP_H_ #ifdef __GNUG__ #pragma interface "fs_zip.h" @@ -20,11 +22,6 @@ #if wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_STREAMS - -#ifndef WXPRECOMP -#include "wx/wx.h" -#endif - #include "wx/filesys.h" class WXDLLEXPORT wxHashTableLong; @@ -42,14 +39,14 @@ class WXDLLEXPORT wxZipFSHandler : public wxFileSystemHandler virtual wxString FindFirst(const wxString& spec, int flags = 0); virtual wxString FindNext(); ~wxZipFSHandler(); - + private: // these vars are used by FindFirst/Next: void *m_Archive; wxString m_Pattern, m_BaseDir, m_ZipFile; bool m_AllowDirs, m_AllowFiles; wxHashTableLong *m_DirsFound; - + wxString DoFind(); }; @@ -57,3 +54,5 @@ class WXDLLEXPORT wxZipFSHandler : public wxFileSystemHandler #endif // wxUSE_FILESYSTEM && wxUSE_FS_ZIP && wxUSE_STREAMS +#endif // _WX_FS_ZIP_H_ +