swimmerbhs

BankingSystem.h

Aug 7th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.51 KB | None | 0 0
  1. /************
  2. Lauren Buecker
  3. Project 2
  4. BankingSystem.h
  5. **************/
  6. #ifndef _BANKINGSYSTEM_H_
  7. #define _BANKINGSYSTEM_H_
  8. #include <iostream>
  9. #include <string>
  10. #include <vector>
  11. #include "Account.h"
  12. using namespace std;
  13.  
  14. class BankingSystem
  15. {
  16. private:
  17.     vector <Account> accounts_;
  18. public:
  19.     string displayMenu;
  20.     void AddAccount(Account newAccount);
  21.     void deleteAccount(Account eraseAccount);
  22.     string deleteAccount();
  23.     string addAccount();
  24.     string listAccounts();
  25.     string saveToFile();
  26. };
  27. #endif
Add Comment
Please, Sign In to add comment