checking.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    checking.h    **
  3. //**********************
  4. #ifndef CHECKING
  5. #define CHECKING
  6. #include "account.h"
  7. enum REMIT{remitByPost,remitByCable,other}; //无,信汇,电汇
  8. class Checking :public Account{
  9. public:
  10.   Checking(unsigned accNo, float balan=0.0);
  11.   virtual void Withdrawal(float amount);
  12.   void SetRemit(REMIT re);
  13. protected:
  14.   REMIT remittance;
  15. };
  16. #endif