#ifndef _WX_BITMAP_H_
#define _WX_BITMAP_H_
-#if defined(__GNUG__) && !defined(__APPLE__)
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "bitmap.h"
#endif
int m_depth;
bool m_ok;
int m_numColors;
+#if wxUSE_PALETTE
wxPalette m_bitmapPalette;
+#endif // wxUSE_PALETTE
int m_quality;
int m_bitmapType ;
void SetQuality(int q);
void SetOk(bool isOk);
- wxPalette* GetPalette() const;
- void SetPalette(const wxPalette& palette);
+#if wxUSE_PALETTE
+ wxPalette* GetPalette() const;
+ void SetPalette(const wxPalette& palette);
+#endif // wxUSE_PALETTE
wxMask *GetMask() const;
void SetMask(wxMask *mask) ;