Advertisement
swimmerbhs

Account.h2

Aug 7th, 2012
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. /***********
  2. Lauren Buecker
  3. Project 2
  4. Account.h
  5. **********/
  6. #ifndef _ACCOUNT_H_
  7. #define _ACCOUNT_H_
  8. #include <string>
  9. using namespace std;
  10.  
  11. class Account
  12.  
  13. {  
  14. private:
  15. string m_accountNumber;
  16. string m_passCode;
  17. string m_lastName;
  18. string m_firstName;
  19. double m_balance;
  20. double m_startingBalance;
  21.  
  22.  
  23. public:
  24.  
  25. void setfirstName( string strName );
  26. void setlastName ( string strName);
  27. void setaccountNumber ( string strAccount );
  28. void setpsCode ( string strCode );
  29. void setstartBalance( double dblBalance );
  30.  
  31. string getfirstName ();
  32. string getlastName();
  33. string getaccountNumber ();
  34. string getpassCode ();
  35. double getstartBalance ();
  36. };
  37. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement