- #include "BankAccount.h"
- __gc class SavingsAccount : public BankAccount
- {
- public:
- SavingsAccount(String * holder);
- ~SavingsAccount();
- void ApplyInterest();
- bool CanDebit(double amount); // Obliged to override CanDebit
- private:
- static double interestRate = 0.05; // 5% interest rate for all accounts
- };