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