rewrite using type safe wxHashMap instead of wxObject-based wxHashTable

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56117 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-10-06 13:25:04 +00:00
parent 2780d31b74
commit 0eb2e51048
2 changed files with 41 additions and 36 deletions

View File

@@ -15,6 +15,8 @@
#include "wx/filesys.h"
class wxMemoryFSHash;
#if wxUSE_GUI
#include "wx/bitmap.h"
#endif // wxUSE_GUI
@@ -51,7 +53,7 @@ public:
protected:
static bool CheckHash(const wxString& filename);
static wxHashTable *m_Hash;
static wxMemoryFSHash *m_Hash;
};
// ----------------------------------------------------------------------------