Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /***********
- Lauren Buecker
- Project 2
- Account.h
- **********/
- #ifndef _ACCOUNT_H_
- #define _ACCOUNT_H_
- #include <string>
- using namespace std;
- class Account
- {
- private:
- string m_accountNumber;
- string m_passCode;
- string m_lastName;
- string m_firstName;
- double m_balance;
- double m_startingBalance;
- public:
- Account();
- void setfirstName( string strName );
- void setlastName ( string strName);
- void setaccountNumber ( string strAccount );
- void setpsCode ( string strCode );
- void setstartBalance( double dblBalance );
- int selection;
- string getfirstName ();
- string getlastName();
- string getaccountNumber ();
- string getpassCode ();
- double getstartBalance ();
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement