/* Name: checking.h * Purpose: Header for Bank Checking Account Class * Author: Dr. Michael A. Redmond * Date Written: 05/04/98 * Date Revised: * NOTES: */ #ifndef CHECKING_H #define CHECKING_H // in checking.h #include "account.h" #include using namespace std; class Checking : public Account { public: Checking(); Checking(const string& numb, double bal = 0.0, int currNumChecks = 0); double ProcessCheck(double amount); double ProcessMonthEnd(); // should be protected but don't have needed mutator for initialization static double minBal; static double perCheckCharge; protected: int numChecksWritten; double lowestBalanceThisMonth; }; #endif