/////// File JointAccount.h /////// #ifndef _JOINT_ACCOUNT_H #define _JOINT_ACCOUNT_H #include #include "Account.H" class JointAccount : virtual public Account { protected: char _jss[SS_LEN]; // joint owner ss no. public: JointAccount() {} // default constructor JointAccount (unsigned n, double b, // alt. constructor char* owner, char* jowner); void Display (ostream& out = cout) const; }; #endif