📄 event.h
字号:
#ifndef EVENT_H
#define EVENT_H
#include <iostream>
using namespace std;
#include "job.h"
class event {
public:
job j;
int wait_until;
public:
event();
event(job j, int wait_until);
job getjob() const;
int arrival_time() const;
friend istream &operator>>(istream &stream, event &e);
friend ostream &operator<<(ostream &stream, event &e);
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -