/////// File JtFrChecking.h /////// #ifndef _JtFrChecking_SEEN_ #define _JtFrChecking_SEEN_ #include "FreeChecking.h" #include "JointAccount.h" class JtFrChecking : public JointAccount, public FreeChecking { public: JtFrChecking() { } // default constructor JtFrChecking(unsigned n, double b, // constructor char* owner, char* jowner) : Account(n, b, owner), JointAccount(n, b, owner, jowner), FreeChecking(n, b, owner) { } void display(ostream& out = cout) const; }; #endif