Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /************
- Lauren Buecker
- Project 2
- BankingSystem.h
- **************/
- #ifndef _BANKINGSYSTEM_H_
- #define _BANKINGSYSTEM_H_
- #include <iostream>
- #include <string>
- #include <vector>
- #include "Account.h"
- using namespace std;
- class BankingSystem
- {
- private:
- vector <Account> accounts_;
- public:
- string displayMenu;
- void AddAccount(Account newAccount);
- void deleteAccount(Account eraseAccount);
- string deleteAccount();
- string addAccount();
- string listAccounts();
- string saveToFile();
- };
- #endif
Add Comment
Please, Sign In to add comment