-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
45 lines (32 loc) · 931 Bytes
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include <iostream>
#include "bank.hpp"
#include "utils.hpp"
using namespace std;
using namespace bank;
int main(int, char**) {
unique_ptr<Customer> customer(new Customer());
signUp(customer.get());
cout << "Press any key to continue..." << endl;
auto choice = getchar();
do
{
clearScreen;
cout << "\nChoose account to access: (Key Press)" << endl;
cout << "C Current\nS Savings\nI Summary\nQ Exit" << endl;
choice = getchar();
if (choice == 99){
options();
choice = getchar();
actions(choice, customer->accounts.front());
}
else if (choice == 105)
customer->customerInfo();
else if (choice == 115){
options();
choice = getchar();
actions(choice, customer->accounts.back());
}
continue;
}while(choice != 'q');
return 0;
}