X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2b5f62a0b2db198609b45dec622a018dae37008e..1f0acb435592470b421b80df854fbbb08cd2853f:/include/wx/imagiff.h diff --git a/include/wx/imagiff.h b/include/wx/imagiff.h index 3591d7570e..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_ -#if defined(__GNUG__) && !defined(__APPLE__) -#pragma interface "imagiff.h" -#endif - #include "wx/image.h" //----------------------------------------------------------------------------- @@ -22,7 +18,7 @@ #if wxUSE_IMAGE && wxUSE_IFF -class WXDLLEXPORT wxIFFHandler : public wxImageHandler +class WXDLLIMPEXP_CORE wxIFFHandler : public wxImageHandler { public: wxIFFHandler() @@ -34,12 +30,12 @@ public: } #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 -private: DECLARE_DYNAMIC_CLASS(wxIFFHandler) };