]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/fs_zip.h
removed duplicated code from dynlib.h and dynload.h
[wxWidgets.git] / include / wx / fs_zip.h
index 0678587f36d9ec41869806ebb55c278b8ed9e2c7..938a091e5edb161b5bf106476872580b42078068 100644 (file)
 
 #include "wx/filesys.h"
 
-class WXDLLEXPORT wxHashTableLong;
+class WXDLLIMPEXP_BASE wxLongToLongHashMap;
 
 //--------------------------------------------------------------------------------
 // wxZipFSHandler
 //--------------------------------------------------------------------------------
 
-class WXDLLEXPORT wxZipFSHandler : public wxFileSystemHandler
+class WXDLLIMPEXP_BASE wxZipFSHandler : public wxFileSystemHandler
 {
     public:
         wxZipFSHandler();
@@ -45,9 +45,11 @@ class WXDLLEXPORT wxZipFSHandler : public wxFileSystemHandler
         void *m_Archive;
         wxString m_Pattern, m_BaseDir, m_ZipFile;
         bool m_AllowDirs, m_AllowFiles;
-        wxHashTableLong *m_DirsFound;
+        wxLongToLongHashMap *m_DirsFound;
 
         wxString DoFind();
+
+    DECLARE_NO_COPY_CLASS(wxZipFSHandler)
 };