| 79 | |
| 80 | public: |
| 81 | void getdata() |
| 82 | { |
| 83 | cout << " Name: "; |
| 84 | cin >> name; |
| 85 | cout << " Account Number: "; |
| 86 | cin >> account_number; |
| 87 | cout << " Type of Account: "; |
| 88 | cin >> type_account; |
| 89 | } |
| 90 | |
| 91 | void showdata() |
| 92 | { |
nothing calls this directly
no outgoing calls
no test coverage detected