fifo.h

来自「ssd5的答案 op2 希望大家用处!」· C头文件 代码 · 共 24 行

H
24
字号

#ifndef FIFO_H
#define FIFO_H

#include <queue>
#include <string>

using namespace std; 

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



class fifo:public simulator {

	public:
		fifo(int seconds_per_page):simulator(seconds_per_page){};
		void simulate(string file);
		~fifo(){};
};

#endif

⌨️ 快捷键说明

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