| 26 | cout << "Constructor: Person(const char, int , bool)" << endl; |
| 27 | } |
| 28 | ~Student() |
| 29 | { |
| 30 | cout << "To destroy object: " << name << endl; |
| 31 | delete [] name; |
| 32 | } |
| 33 | |
| 34 | void setName(const char * s) |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected