#ifndef _RGB_H_
#define _RGB_H_
-typedef unsigned char color;
+typedef unsigned int color;
/** Representación de un color en codificación RGB */
class RGB {
return (*this);
}
+ bool operator == (const RGB &c) {
+ return ((r()==c.r()) && (g() == c.g()) && (b() == c.b()));
+ }
+
color r() const { return my_r; }
color g() const { return my_g; }
color b() const { return my_b; }