#ifndef _CHARBITMAP_H #define _CHARBITMAP_H #include using namespace std; #include "tmatrix.h" // class for black/white pixmaps // rudimentary, but useful for illustrating concepts class CharBitMap { public: CharBitMap(int rows, int cols); enum color{black,white}; void SetPixel (int row, int col, CharBitMap::color c); color GetPixel(int row, int col) const; // return pixel value void Display(ostream& out) const; // display grid int Rows() const; // get dimensions: rows int Cols() const; // get dimesnions: cols private: char ToChar(CharBitMap::color c) const; // for display tmatrix myGrid; static char ULEFT, URIGHT,LLEFT,LRIGHT,VERT,HORIZ, ON, OFF; }; #endif