| 14 | }; |
| 15 | |
| 16 | class Student: public Person |
| 17 | { |
| 18 | string studentid; |
| 19 | public: |
| 20 | Student(string name="", string sid=""):Person(name),studentid(sid){}; |
| 21 | string getInfo(){return name+":"+studentid;} |
| 22 | }; |
| 23 | |
| 24 | int main() |
| 25 | { |
nothing calls this directly
no outgoing calls
no test coverage detected