+ // bring the base class versions into the scope, otherwise they would be
+ // inaccessible in wxMemoryFSHandler
+ // (unfortunately "using" can't be used as gcc 2.95 doesn't have it...)
+ static void AddFile(const wxString& filename, const wxString& textdata)
+ {
+ wxMemoryFSHandlerBase::AddFile(filename, textdata);
+ }
+
+ static void AddFile(const wxString& filename,
+ const void *binarydata,
+ size_t size)
+ {
+ wxMemoryFSHandlerBase::AddFile(filename, binarydata, size);
+ }
+ static void AddFileWithMimeType(const wxString& filename,
+ const wxString& textdata,
+ const wxString& mimetype)
+ {
+ wxMemoryFSHandlerBase::AddFileWithMimeType(filename,
+ textdata,
+ mimetype);
+ }
+ static void AddFileWithMimeType(const wxString& filename,
+ const void *binarydata, size_t size,
+ const wxString& mimetype)
+ {
+ wxMemoryFSHandlerBase::AddFileWithMimeType(filename,
+ binarydata, size,
+ mimetype);
+ }
+
+#if wxUSE_IMAGE
+ static void AddFile(const wxString& filename,
+ const wxImage& image,
+ long type);
+
+ static void AddFile(const wxString& filename,
+ const wxBitmap& bitmap,
+ long type);
+#endif // wxUSE_IMAGE
+
+};
+
+#else // !wxUSE_GUI
+
+// just the same thing as the base class in wxBase
+class WXDLLIMPEXP_BASE wxMemoryFSHandler : public wxMemoryFSHandlerBase
+{