employee.h

来自「C语言做的超市进销存源代码文件」· C头文件 代码 · 共 27 行

H
27
字号
#include<fstream>
#include<conio.h>
#include<string>
using namespace std;
struct employee
{	
	char password[12];//密码
	char name[12];
	char id_card[20];
	char date[20];//创建日期
	int accounts;//帐号
};
	
class Employee
{
private:
	employee emp;
	fstream file;
public:
	Employee();
	~Employee();
	void view_record();
	void change_password();
    int landing();//返回帐号
	void new_employee();
	void input_password();
};

⌨️ 快捷键说明

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