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

📄 bank.h

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

#ifndef _BANK_040607_H
#define _BANK_040607_H

class Bank {
public:
	void readRecords(char* filePath);
	Bank();

	char get_command();
	void do_command(char ch);
	char get_operation();
	void do_operation(char ch);
	
	void introduction();
	void command_help();
	void operation_help();

	void writeRecords(char* filePath);

	int crr_acc() const;
private:
	vector<Account> accounts;
	int current;
};

#endif

⌨️ 快捷键说明

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