-
- wxPen( const wxColour &colour, int width, int style );
- ~wxPen();
-
- wxPen( const wxPen& pen ) { Ref(pen); }
- wxPen& operator = ( const wxPen& pen ) { Ref(pen); return *this; }
-
- bool Ok() const { return m_refData != NULL; }
-
+
+ wxPen( const wxColour &colour, int width = 1, int style = wxSOLID );
+ wxPen( const wxBitmap &stipple, int width );
+ virtual ~wxPen();
+
+ bool Ok() const { return IsOk(); }
+ bool IsOk() const { return m_refData != NULL; }
+