CurrentAccount.h
上传用户:sz0451
上传日期:2022-07-29
资源大小:256k
文件大小:0k
源码类别:

.net编程

开发平台:

Visual C++

  1. #include "BankAccount.h"
  2. __gc class CurrentAccount : public BankAccount
  3. {
  4. public:
  5.     CurrentAccount(String * holder, double limit);
  6.     ~CurrentAccount();
  7.     void ChangeOverdraftLimit(double newLimit);
  8.     String * ToString();                // Choose to override ToString
  9.     bool CanDebit(double amount);   // Obliged to override CanDebit
  10. private:
  11.     double overdraftLimit;
  12. };