/* CS471B Assignment 2: University Instructor: Wade Holst Submitted by: Dan Fraser Student number: 001219229 File Name: Person.cc File description: Person composite leaf class implementation */ #include "Person.h" Person::~Person() { } int Person::getTotalPeople() const { return 1; } int Person::getTotalStudents() const { return 0; } Professor* Person::getTopProfessor() { return NULL; } int Person::getSalary() const { return 0; }