fifo.h

来自「ssd5 fifo.h 模拟打印机全部源代码」· C头文件 代码 · 共 21 行

H
21
字号
#ifndef FIFO_H
#define FIFO_H

#include <queue>
#include <string>

using namespace std; 

#include "event.h"
#include "simulator.h"

class fifo:public simulator {
public:
 fifo(int seconds_per_page);

 void simulate(string file);

};


#endif

⌨️ 快捷键说明

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