charbitmap.h

来自「C++&datastructure书籍源码,以前外教提供现在与大家共享」· C头文件 代码 · 共 33 行

H
33
字号
#ifndef _CHARBITMAP_H
#define _CHARBITMAP_H

#include <iostream>
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<color> myGrid;
    
    static char ULEFT, URIGHT,LLEFT,LRIGHT,VERT,HORIZ, ON, OFF;
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?