]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/fs_zip.h
The use of wxPopupWindow fo rhte autocomplete and calltip windows is
[wxWidgets.git] / include / wx / fs_zip.h
index 94d10c8f25c4b791271c03a985e1860bff678301..960a1fd1a5559f6003b3fa6b59c3a60f3e6217dd 100644 (file)
@@ -7,9 +7,11 @@
 // Licence:     wxWindows Licence
 /////////////////////////////////////////////////////////////////////////////
 
+#ifndef _WX_FS_ZIP_H_
+#define _WX_FS_ZIP_H_
 
 #ifdef __GNUG__
-#pragma implementation
+#pragma interface "fs_zip.h"
 #endif
 
 #include "wx/wxprec.h"
 
 #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_
+