]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/imagpng.h
Further performance optimizations
[wxWidgets.git] / include / wx / imagpng.h
index 73c465a90d6eb0a3096cbc66db2e592e636643f3..67aae57b63697111e9ccdd9003742b1211c8b3d9 100644 (file)
 #ifndef _WX_IMAGPNG_H_
 #define _WX_IMAGPNG_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "imagpng.h"
-#endif
-
 #include "wx/defs.h"
 
 //-----------------------------------------------------------------------------
@@ -34,7 +30,7 @@ enum
     wxPNG_TYPE_GREY_RED = 3
 };
 
-class WXDLLEXPORT wxPNGHandler: public wxImageHandler
+class WXDLLIMPEXP_CORE wxPNGHandler: public wxImageHandler
 {
 public:
     inline wxPNGHandler()
@@ -48,6 +44,7 @@ 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 );
+protected:
     virtual bool DoCanRead( wxInputStream& stream );
 #endif