#ifndef _COLOR_RGB_H_ #define _COLOR_RGB_H_ #include typedef unsigned char uchar; class ColorRGB: public Sujeto { public: ColorRGB(int _r=0, int _g=0, int _b=0); void setRGB(int _r, int _g, int _b); void getRGB(uchar &_r, uchar &_g, uchar &_b); private: uchar r, g, b; }; #endif