buffpool.h

来自「数据结构与算法分析」· C头文件 代码 · 共 10 行

H
10
字号
class BufferPool {
public:
  // Insert from space sz bytes begining at position pos
  //   of the buffered store
  virtual void insert(void* space, int sz, int pos) = 0;
  // Put into space sz bytes beginning at position pos
  //   of the buffered store
  virtual void getbytes(void* space, int sz, int pos) = 0;
};

⌨️ 快捷键说明

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