-
- wxPen( const wxColour &colour, int width = 1, int style = wxSOLID );
- ~wxPen();
-
- wxPen( const wxPen& pen )
- : wxGDIObject()
- { Ref(pen); }
- wxPen& operator = ( const wxPen& pen ) { Ref(pen); return *this; }
-
- bool Ok() const { return m_refData != NULL; }
-
- bool operator == ( const wxPen& pen ) const;
- bool operator != (const wxPen& pen) const { return !(*this == pen); }
+
+ wxPen( const wxColour &colour, int width = 1, wxPenStyle style = wxPENSTYLE_SOLID );
+#if FUTURE_WXWIN_COMPATIBILITY_3_0
+ wxDEPRECATED_FUTURE( wxPen(const wxColour& col, int width, int style) );
+#endif
+
+ virtual ~wxPen();
+
+ bool operator==(const wxPen& pen) const;
+ bool operator!=(const wxPen& pen) const { return !(*this == pen); }