/////// File FreeChecking.h /////// #ifndef _FREECHEC_H #define _FREECHEC_H #include #include "Account.h" class FreeChecking : virtual public Account { private: static float min_bal; static float service_fee; int _free; public: FreeChecking() {} // default constructor FreeChecking (unsigned n, double b, // alt. constructor char* owner); void ChargeFee(); // charge monthly fee int Withdraw (double amt); // withdraw amt static void SetMinbal (float m) { min_bal = m; } static void SetFee (float f) { service_fee = f; } void Display (ostream& out = cout) const; }; #endif