home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c100 / 1.ddi / OOPWLD.ZIP / BINTREE / SMAP.HPP < prev   
Encoding:
C/C++ Source or Header  |  1990-05-10  |  303 b   |  14 lines

  1. // SMAP.HPP : class for mapping the character screen, so you can place
  2. // characters in the map, and display the map.
  3.  
  4. class screenmap {
  5.   char ** map;
  6.   int width;
  7.   int height;
  8. public:
  9.   screenmap(int ht, int wid);
  10.   ~screenmap();
  11.   char & operator() (int h, int w);
  12.   void display();
  13. };
  14.