Advertisement
swimmerbhs

Account.h

Aug 7th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.69 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. Account();  
  26. void setfirstName( string strName );
  27. void setlastName ( string strName);
  28. void setaccountNumber ( string strAccount );
  29. void setpsCode ( string strCode );
  30. void setstartBalance( double dblBalance );
  31.  
  32. int selection;
  33. string getfirstName ();
  34. string getlastName();
  35. string getaccountNumber ();
  36. string getpassCode ();
  37. double getstartBalance ();
  38. };
  39. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement