accountstandard.h

来自「是银行atm机的基本功能实现」· C头文件 代码 · 共 25 行

H
25
字号
// AccountStandard.h: interface for the AccountStandard class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_ACCOUNTSTANDARD_H__72C89100_E481_4FBC_B4B2_3F9AC504021E__INCLUDED_)
#define AFX_ACCOUNTSTANDARD_H__72C89100_E481_4FBC_B4B2_3F9AC504021E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "Account.h"

class AccountStandard : public Account  
{
public:
	int Withdraw(double Amount);
	int Save(double Amount);
	AccountStandard();
	virtual ~AccountStandard();

};

#endif // !defined(AFX_ACCOUNTSTANDARD_H__72C89100_E481_4FBC_B4B2_3F9AC504021E__INCLUDED_)

⌨️ 快捷键说明

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