| 24 | } |
| 25 | |
| 26 | void withdraw(int amount) override |
| 27 | { |
| 28 | if (amount <= balance) balance -= amount; |
| 29 | } |
| 30 | |
| 31 | friend ostream& operator<<(ostream& os, const CurrentAccount& obj) |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected