/////// File Account.h /////// #ifndef _Account_SEEN_ #define _Account_SEEN_ class Account // class name { public: Account(unsigned n, double b, // constructor char* ss); Account() {} // default constructor void deposit(double amt); // deposit amt into this account int withdraw(double amt); // withdraw amt from this account double balance(); // balance inquiry /* other public members */ protected: enum {SS_LEN = 12}; unsigned acct_no; // account number char ss[SS_LEN]; // owner ss no. private: /* other members */ double acct_bal; // current balance }; #endif