⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 account.h

📁 是个银行柜面系统软件
💻 H
字号:
#include "operation.h"
#include <vector>
#include <string>

#ifndef _ACCOUNT_0607_H
#define _ACCOUNT_0607_H

class Account {
public:
	void readFromFile(FILE *pFile);
	void write2File(FILE* pFile);
	Account() {}
	Account( string&,  string&);
	string ID() ;
	string passwd() ;
	int balance() ;

	void deposite(int);
	void draw(int);
	void print_operations();

private:
	string m_id;
	string m_passwd;
	int m_balance;
	vector<Operation> operations;
};

#endif

⌨️ 快捷键说明

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