/////////////////////////////////////////////////////////////////////////////
-// Name: imaggif.h
+// Name: wx/imagxpm.h
// Purpose: wxImage XPM handler
// Author: Vaclav Slavik
// RCS-ID: $Id$
#include "wx/image.h"
+#if wxUSE_XPM
//-----------------------------------------------------------------------------
// wxXPMHandler
//-----------------------------------------------------------------------------
-class WXDLLEXPORT wxXPMHandler : public wxImageHandler
+class WXDLLIMPEXP_CORE wxXPMHandler : public wxImageHandler
{
public:
inline wxXPMHandler()
#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 );
+protected:
virtual bool DoCanRead( wxInputStream& stream );
#endif
DECLARE_DYNAMIC_CLASS(wxXPMHandler)
};
+#endif // wxUSE_XPM
-#endif
- // _WX_IMAGXPM_H_
-
+#endif // _WX_IMAGXPM_H_