RoseCard.h
资源名称:ATM.rar [点击查看]
上传用户:szmwdq
上传日期:2022-07-16
资源大小:528k
文件大小:1k
源码类别:
金融证券系统
开发平台:
Visual C++
- // RoseCard.h: interface for the RoseCard class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_ROSECARD_H__DDAF3E49_DF25_401B_839E_74C5910F2335__INCLUDED_)
- #define AFX_ROSECARD_H__DDAF3E49_DF25_401B_839E_74C5910F2335__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #include "BankCard.h"
- enum REMIT{remitByPost, remitByCable, other};
- class RoseCard : public BankCard
- {
- REMIT remat;
- public:
- RoseCard(REMIT r,string n,int c,float b,string ba);
- void setRemit(REMIT re);
- virtual void display();
- virtual void withdrawal(double a);
- virtual ~RoseCard();
- };
- #endif // !defined(AFX_ROSECARD_H__DDAF3E49_DF25_401B_839E_74C5910F2335__INCLUDED_)