- wxPen();
- wxPen( const wxColour &colour, int width, int style );
- wxPen( const wxPen& pen );
- ~wxPen();
- wxPen& operator = ( const wxPen& pen );
- bool operator == ( const wxPen& pen ) const;
- bool operator != ( const wxPen& pen ) const;
+ wxPen() { }
+
+ 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
+
+ bool operator==(const wxPen& pen) const;
+ bool operator!=(const wxPen& pen) const { return !(*this == pen); }