cappmoney.h

来自「AA制消费管理系统(简易型) 实现账户信息」· C头文件 代码 · 共 37 行

H
37
字号
#ifndef _CAPPMONEY_H
#define _CAPPMONEY_H
//充值信息类
class CAppMoney
{
public:
	CAppMoney();
	CAppMoney(int _id,string _name,string _date,float _money,string _comment);
	~CAppMoney();
	int		GetID();
	string	GetName();
	string	GetDate();
	float	GetMoney();
	string	GetComment();

	void	SetID(int _id);
	void	SetName(string _name);
	void	SetDate(string _date);
	void	SetMoney(float _money);
	void	SetComment(string _comment);

	int		AddAppMoney();
	int		ActApp();
	void	ShowAppMoneyInfo();


private:
	int		id;
	string	name;
	string	date;
	float	money;
	string	comment;
};



#endif

⌨️ 快捷键说明

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