]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/imaggif.h
wxPropertyGridInterface docs cleanup and fixes, removed some rarely needed member...
[wxWidgets.git] / include / wx / imaggif.h
index 2a6affdda7da046e1735868ce1d16e07eb73b0cd..d4f170843ba187409aa750a5407e99b54f735f63 100644 (file)
 #ifndef _WX_IMAGGIF_H_
 #define _WX_IMAGGIF_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "imaggif.h"
-#endif
-
 #include "wx/image.h"
 
 
@@ -23,7 +19,7 @@
 
 #if wxUSE_GIF
 
-class WXDLLEXPORT wxGIFHandler : public wxImageHandler
+class WXDLLIMPEXP_CORE wxGIFHandler : public wxImageHandler
 {
 public:
     inline wxGIFHandler()
@@ -35,8 +31,9 @@ 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