| 13 | bool male; |
| 14 | public: |
| 15 | Student() |
| 16 | { |
| 17 | student_total++; |
| 18 | name = new char[1024]{0}; |
| 19 | born = 0; |
| 20 | male = false; |
| 21 | cout << "Constructor: Person(): student_total = " << student_total << endl; |
| 22 | } |
| 23 | Student(const char * initName, int initBorn, bool isMale) |
| 24 | { |
| 25 | student_total++; |
nothing calls this directly
no outgoing calls
no test coverage detected