- void Set(unsigned char r, unsigned char g, unsigned char b);
- void Set(unsigned long colRGB)
- {
+ // copy ctors and assignment operators
+ wxColour( const wxColour& col );
+/* wxColour( const wxColour* col ); */
+ wxColour& operator = ( const wxColour& col );
+
+ // dtor
+ ~wxColour();
+
+ // Set() functions
+ void Set( unsigned char red, unsigned char green, unsigned char blue );
+ void Set(unsigned long colRGB)
+ {