/////// File FreeChecking.h /////// #include "Account.h" class FreeChecking : public Account { public: FreeChecking(unsigned n, double b, // constructor char* owner); FreeChecking() {} // default constructor void fee(); // charge monthly fee int withdraw(double amt); // withdraw amt static void set_minbal(float m) { min_bal = m; } static void set_fee(float f) { service_fee = f; } private: static float min_bal; static float service_fee; int free; };