X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/63f8abca79edfcf92641b21b0a16687ac84d152b..cce10ca06ba6406cc39d14b8721f5c460b0b4cfc:/include/wx/imagiff.h diff --git a/include/wx/imagiff.h b/include/wx/imagiff.h index df340cd7b0..ed43fad66a 100644 --- a/include/wx/imagiff.h +++ b/include/wx/imagiff.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: imagiff.h +// Name: wx/imagiff.h // Purpose: wxImage handler for Amiga IFF images // Author: Steffen Gutmann // RCS-ID: $Id$ @@ -10,10 +10,6 @@ #ifndef _WX_IMAGE_IFF_H_ #define _WX_IMAGE_IFF_H_ -#ifdef __GNUG__ -#pragma interface "imagiff.h" -#endif - #include "wx/image.h" //----------------------------------------------------------------------------- @@ -22,10 +18,8 @@ #if wxUSE_IMAGE && wxUSE_IFF -class WXDLLEXPORT wxIFFHandler : public wxImageHandler +class WXDLLIMPEXP_CORE wxIFFHandler : public wxImageHandler { - DECLARE_DYNAMIC_CLASS(wxIFFHandler) - public: wxIFFHandler() { @@ -33,13 +27,16 @@ public: m_extension = wxT("iff"); m_type = wxBITMAP_TYPE_IFF; m_mime = wxT("image/x-iff"); - }; + } #if wxUSE_STREAMS - virtual bool LoadFile(wxImage *image, wxInputStream& stream, bool verbose=TRUE, int index=-1); - virtual bool SaveFile(wxImage *image, wxOutputStream& stream, bool verbose=TRUE); + virtual bool LoadFile(wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1); + virtual bool SaveFile(wxImage *image, wxOutputStream& stream, bool verbose=true); +protected: virtual bool DoCanRead(wxInputStream& stream); #endif + + DECLARE_DYNAMIC_CLASS(wxIFFHandler) }; #endif // wxUSE_IMAGE && wxUSE_IFF