wxWidgets/interface/wx/imagiff.h
Vadim Zeitlin 8fbca5cb70 Remove all trailing spaces
No real changes, just clean up sources by removing trailing spaces from
all the non-generated files.

This should hopefully avoid future commits mixing significant changes
with insignificant whitespace ones.
2019-01-30 17:35:54 +01:00

32 lines
852 B
Objective-C

/////////////////////////////////////////////////////////////////////////////
// Name: imagiff.h
// Purpose: interface of wxIFFHandler
// Author: Samuel Dunn
// Licence: wxWindows licence
////////////////////////////////////////////////////////////////////////////
/**
@class wxIFFHandler
This is the image handler for the IFF format.
@library{core}
@category{gdi}
@see wxImage, wxImageHandler, wxInitAllImageHandlers()
*/
class wxIFFHandler : public wxImageHandler
{
public:
/**
Default constructor for wxIFFHandler
*/
wxIFFHandler();
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);
};