#ifndef BASICDRAWINGPAINTAREA_H #define BASICDRAWINGPAINTAREA_H #include class pixel { private: unsigned short int drawR, drawG, drawB; unsigned short int lineStartX, lineStartY; public: pixel (); ~pixel (); void draw (HDC hdc, int x, int y); void drawLine (HDC hdc, int endX, int endY); void setDrawColour (int r, int g, int b); void setLineStart (int x, int y); }; #endif