| 78 | { |
| 79 | public: |
| 80 | Account() |
| 81 | { |
| 82 | cout << "Object is being Created" << endl; |
| 83 | name = "Rustam"; |
| 84 | number = "123456789"; |
| 85 | balance = 12345; |
| 86 | } |
| 87 | ~Account() |
| 88 | { |
| 89 | cout << "Object is being Deleted" << endl; |
nothing calls this directly
no outgoing calls
no test coverage detected