📄 employee.h
字号:
// Employee.h: interface for the Employee class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_EMPLOYEE_H__74EFBD88_BEB9_4FC0_8F05_70E954C78D21__INCLUDED_)
#define AFX_EMPLOYEE_H__74EFBD88_BEB9_4FC0_8F05_70E954C78D21__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Bank.h"
class Employee
{
public:
void ResponseRequest();
void Welcome();
void SetBank(Bank *pBank);
Employee();
virtual ~Employee();
private:
Bank *m_pBank;
};
#endif // !defined(AFX_EMPLOYEE_H__74EFBD88_BEB9_4FC0_8F05_70E954C78D21__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -