event.cpp
来自「银行的简易存储系统」· C++ 代码 · 共 51 行
CPP
51 行
#include ".\event.h"
#using <mscorlib.dll>
Event::Event(void)
{
}
Event::Event(time24 t,EventType et,int cn,int tn,int wt,int st)
{
time = t;
etype = et;
customerID = cn;
tellerID = tn;
waittime = wt;
servicetime = st;
}
time24 Event::GetTime() const
{
return time;
}
EventType Event::GetEventType() const
{
return etype;
}
int Event::GetCustomerID() const
{
return customerID;
}
int Event::GetTellerID() const
{
return tellerID;
}
int Event::GetWaitTime() const
{
return waittime;
}
int Event::GetServiceTime() const
{
return servicetime;
}
Event::~Event(void)
{
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?