checking.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:
C#编程
开发平台:
Visual C++
- //**********************
- //** checking.h **
- //**********************
- #ifndef CHECKING
- #define CHECKING
- #include "account.h"
- enum REMIT{remitByPost,remitByCable,other}; //无,信汇,电汇
- class Checking :public Account{
- public:
- Checking(unsigned accNo, float balan=0.0);
- virtual void Withdrawal(float amount);
- void SetRemit(REMIT re);
- protected:
- REMIT remittance;
- };
- #endif