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