bank.h

来自「是个银行柜面系统软件」· C头文件 代码 · 共 29 行

H
29
字号
#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 + =
减小字号Ctrl + -
显示快捷键?