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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // checking_sub.h
  3. //=====================================
  4. #ifndef HEADER_CHECKING
  5. #define HEADER_CHECKING
  6. //-------------------------------------
  7. #include"savings_base.h"
  8. #include<string>
  9. using std::string;
  10. //-------------------------------------
  11. enum REMIT{remitByPost, remitByCable, other}; //信汇, 电汇, 无
  12. //-------------------------------------
  13. class Checking : public Savings{
  14.   REMIT remittance;
  15. public:
  16.   Checking(string acntNo, double balan=0.0);
  17.   void display()const;
  18.   void withdrawal(double amount);
  19.   void setRemit(REMIT re){ remittance = re; }
  20. };//-----------------------------------
  21. #endif  // HEADER_CHECKING
  22.