X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dcb86da02199f7fea33f7b76a5c0fc95873f93f3..3e6e2754a688f0db737e18fe4a138f83013ad8e9:/include/wx/fs_mem.h diff --git a/include/wx/fs_mem.h b/include/wx/fs_mem.h index 61b491fbc1..7195025136 100644 --- a/include/wx/fs_mem.h +++ b/include/wx/fs_mem.h @@ -8,7 +8,7 @@ #ifdef __GNUG__ -#pragma implementation +#pragma interface "fs_mem.h" #endif #include "wx/wxprec.h" @@ -17,15 +17,17 @@ #pragma hdrstop #endif -#if (wxUSE_HTML || wxUSE_FS_INET || wxUSE_FS_ZIP) && wxUSE_STREAMS +#if wxUSE_FILESYSTEM #ifndef WXPRECOMP #include "wx/wx.h" #endif #include "wx/filesys.h" +#if wxUSE_GUI #include "wx/image.h" #include "wx/bitmap.h" +#endif //-------------------------------------------------------------------------------- // wxMemoryFSHandler @@ -39,8 +41,10 @@ class WXDLLEXPORT wxMemoryFSHandler : public wxFileSystemHandler // Add file to list of files stored in memory. Stored data (bitmap, text or raw data) // will be copied into private memory stream and available under name "memory:" + filename +#if wxUSE_GUI static void AddFile(const wxString& filename, wxImage& image, long type); static void AddFile(const wxString& filename, const wxBitmap& bitmap, long type); +#endif static void AddFile(const wxString& filename, const wxString& textdata); static void AddFile(const wxString& filename, const void *binarydata, size_t size); @@ -59,6 +63,6 @@ class WXDLLEXPORT wxMemoryFSHandler : public wxFileSystemHandler }; #endif - // (wxUSE_HTML || wxUSE_FS_INET || wxUSE_FS_ZIP) && wxUSE_STREAMS + // wxUSE_FILESYSTEM