#ifndef _WX_BITMAP_H_
#define _WX_BITMAP_H_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma interface "bitmap.h"
-#endif
-
#include "wx/palette.h"
// Bitmap
// Copy constructors
wxBitmap(const wxBitmap& bitmap)
- { Ref(bitmap); }
+ : wxBitmapBase()
+ {
+ Ref(bitmap);
+ }
// Initialize with raw data.
wxBitmap(const char bits[], int width, int height, int depth = 1);