added const to some operators

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12943 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2005-06-03 19:31:26 +00:00
parent 11f97ed147
commit 7aca21e6bf
2 changed files with 23 additions and 9 deletions
+5 -2
View File
@@ -67,8 +67,11 @@ public:
const RGBColor & operator=(const RGBColor &col);
const RGBColor & operator=(const rgb_color &col);
bool operator==(const rgb_color &col);
bool operator==(const RGBColor &col);
bool operator==(const rgb_color &col) const;
bool operator==(const RGBColor &col) const;
bool IsTransparentMagic() const;
protected:
rgb_color color32;