| 89 | cout << "Object is being Deleted" << endl; |
| 90 | } |
| 91 | void Display() |
| 92 | { |
| 93 | cout << "Name: " << name << endl |
| 94 | << "Number: " << number << endl |
| 95 | << "Balance: " << balance << endl; |
| 96 | } |
| 97 | |
| 98 | private: |
| 99 | string name; |
nothing calls this directly
no outgoing calls
no test coverage detected