RoseCard.h
上传用户:szmwdq
上传日期:2022-07-16
资源大小:528k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. // RoseCard.h: interface for the RoseCard class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ROSECARD_H__DDAF3E49_DF25_401B_839E_74C5910F2335__INCLUDED_)
  5. #define AFX_ROSECARD_H__DDAF3E49_DF25_401B_839E_74C5910F2335__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "BankCard.h"
  10. enum REMIT{remitByPost, remitByCable, other}; 
  11. class RoseCard  : public BankCard
  12. {
  13. REMIT remat;
  14. public:
  15. RoseCard(REMIT r,string n,int c,float b,string ba);
  16. void setRemit(REMIT re);
  17. virtual void display();                    
  18. virtual void withdrawal(double a); 
  19. virtual ~RoseCard();
  20. };
  21. #endif // !defined(AFX_ROSECARD_H__DDAF3E49_DF25_401B_839E_74C5910F2335__INCLUDED_)