From: Alistair Leslie-Hughes leslie_alistair@hotmail.com
--- include/gdipluscolor.h | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/include/gdipluscolor.h b/include/gdipluscolor.h index 39b7cb6debd..46acc51deed 100644 --- a/include/gdipluscolor.h +++ b/include/gdipluscolor.h @@ -35,6 +35,11 @@ class Color { protected: ARGB Argb; + +public: + ARGB GetValue() const { return Argb; } + + void SetValue(ARGB argb) { Argb = argb; } };
#else /* end of c++ typedefs */