// Initialize with XPM data
wxBitmap(const char* const* data);
-#if defined(__BORLANDC__) || (defined (__GNUC__) && __GNUC__ < 3)
- // needed for Borland 5.5
+#ifdef wxNEEDS_CHARPP
wxBitmap(char** data)
{
*this = wxBitmap(wx_const_cast(const char* const*, data));
public:
wxMask();
+ // Copy constructor
+ wxMask(const wxMask &mask);
+
// Construct a mask from a bitmap and a colour indicating the transparent
// area
wxMask(const wxBitmap& bitmap, const wxColour& colour);