📄 customer.h.svn-base
字号:
/*****************************************************************************//* Betriebssysteme *//*---------------------------------------------------------------------------*//* *//* C U S T O M E R *//* *//*---------------------------------------------------------------------------*//* Ein Thread, der auf ein Ereignis warten kann. *//*****************************************************************************/#ifndef __customer_include__#define __customer_include__#include "thread/entrant.h"#include "meeting/waitingroom.h"#define NULL 0class Waitingroom;class Customer: public Entrant {protected: Waitingroom *wr;public: Customer() { wr= NULL;} Customer(void *tos): Entrant(tos) { wr= NULL; } ~Customer() { } void waiting_in(Waitingroom *wroom) { wr= wroom; } Waitingroom *waiting_in() { return wr; }};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -