#ifndef _PIXEL_H #define _PIXEL_H class Pixel { public :
char r; char g; char b;
Pixel();
Pixel(char ro, char ve, char bl);
Pixel operator=(Pixel p);
}; #endif