employee.h

来自「玩具百货公司销售进货记录系统!界面比较齐全,功能完善」· C头文件 代码 · 共 25 行

H
25
字号
// Employee.h: interface for the CEmployee class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_EMPLOYEE_H__B4815739_648F_4960_B958_1CCE3D4E88F3__INCLUDED_)
#define AFX_EMPLOYEE_H__B4815739_648F_4960_B958_1CCE3D4E88F3__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CEmployee  
{
public:
	CEmployee();
	virtual ~CEmployee();
	int GetKeyByName(CString name);
private:
	int m_iEmpID;
	CString m_Name;

};

#endif // !defined(AFX_EMPLOYEE_H__B4815739_648F_4960_B958_1CCE3D4E88F3__INCLUDED_)

⌨️ 快捷键说明

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