Constructor for Person class
| 17 | public: |
| 18 | // Constructor for Person class |
| 19 | Person(string name, string tell) { |
| 20 | this->name = name; this->tell = tell; |
| 21 | } |
| 22 | |
| 23 | virtual void Display() = 0; |
| 24 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected