class WXDLLEXPORT wxBitmap: public wxBitmapBase
{
public:
- wxBitmap();
+ wxBitmap() {}
wxBitmap(int width, int height, int depth = -1);
wxBitmap(const char bits[], int width, int height, int depth = 1);
wxBitmap(const char **bits) { CreateFromXpm(bits); }
wxBitmap(const wxBitmap& bmp);
wxBitmap(const wxString &filename, wxBitmapType type = wxBITMAP_TYPE_RESOURCE);
wxBitmap(const wxImage& image, int depth = -1);
- ~wxBitmap();
+ ~wxBitmap() {}
wxBitmap& operator = (const wxBitmap& bmp);
bool operator == (const wxBitmap& bmp) const;
bool operator != (const wxBitmap& bmp) const;
class WXDLLEXPORT wxBrush: public wxGDIObject
{
public:
- wxBrush();
+ wxBrush() {}
wxBrush(const wxColour &colour, int style);
wxBrush(const wxBitmap &stippleBitmap);
wxBrush(const wxBrush &brush);
- ~wxBrush();
+ ~wxBrush() {}
wxBrush& operator = (const wxBrush& brush);
bool operator == (const wxBrush& brush) const;
bool operator != (const wxBrush& brush) const;
bool Create(const wxNativeFontInfo& fontinfo);
- ~wxFont();
+ ~wxFont() {}
// assignment
wxFont& operator=(const wxFont& font);
protected:
// common part of all ctors
- void Init();
+ void Init() {}
private:
DECLARE_DYNAMIC_CLASS(wxFont)
class WXDLLEXPORT wxPen: public wxGDIObject
{
public:
- wxPen();
+ wxPen() {}
wxPen(const wxColour &colour, int width, int style);
wxPen(const wxBitmap& stipple, int width);
wxPen(const wxPen& pen);
- ~wxPen();
+ ~wxPen() {}
wxPen& operator = (const wxPen& pen);
bool operator == (const wxPen& pen) const;
bool operator != (const wxPen& pen) const;