📄 cappmoney.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -