#ifndef RGB_H #define RGB_H // an example -- you need to add more functions typedef struct RGB { RGB(int, int, int); void operator=(RGB); int r, g, b; } RGB; #endif