| 4 | using namespace std; |
| 5 | |
| 6 | class Person |
| 7 | { |
| 8 | protected: |
| 9 | string name; |
| 10 | public: |
| 11 | Person(string name=""):name(name){}; |
| 12 | virtual ~Person(){} |
| 13 | string getInfo(){return name;} |
| 14 | }; |
| 15 | |
| 16 | class Student: public Person |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected