#ifndef _WX_PNGREAD__
#define _WX_PNGREAD__
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "pngread.h"
-#endif
-
#ifndef byte
typedef unsigned char byte;
#endif
virtual bool InstantiateBitmap(wxBitmap *bitmap);
wxMask *CreateMask(void);
- inline bool Ok(void) { return imageOK; }
+ inline bool Ok() const { return IsOk(); }
+ inline bool IsOk(void) { return imageOK; }
};
class wxPNGReaderIter