// classes
//-----------------------------------------------------------------------------
-class WXDLLEXPORT wxBitmap;
-class WXDLLEXPORT wxPen;
+class WXDLLIMPEXP_FWD_CORE wxBitmap;
+class WXDLLIMPEXP_FWD_CORE wxPen;
//-----------------------------------------------------------------------------
// wxPen
wxPen() {}
wxPen(const wxColour &colour, int width = 1, int style = wxSOLID);
wxPen(const wxBitmap& stipple, int width);
- wxPen(const wxPen& pen);
- ~wxPen() {}
- wxPen& operator = (const wxPen& pen);
+ virtual ~wxPen() {}
bool operator == (const wxPen& pen) const;
bool operator != (const wxPen& pen) const;
wxDash* GetDash() const;
wxBitmap *GetStipple() const;
- bool Ok() const;
+ bool Ok() const { return IsOk(); }
+ bool IsOk() const;
// implementation:
void* GetPixPattern() const;