/////// File Account.h /////// class Account // class name { public: Account(unsigned n, double b); // constructor void deposit(double amt); // deposit amt into this account int withdraw(double amt); // withdraw amt from this account double balance(); // balance inquiry int transfer(double amt, // transfer amt from another account Account& acct); /* other public members */ private: unsigned acct_no; // account number double acct_bal; // current balance /* other private members */ };