Constructor for Person class
| 20 | public: |
| 21 | // Constructor for Person class |
| 22 | Person(string name, string tell) { |
| 23 | this->name = name; |
| 24 | this->tell = tell; |
| 25 | } |
| 26 | |
| 27 | // pure virtual function 'Display' |
| 28 | virtual void Display() = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected