#include "Person.h" /**************************************************************** FUNCTION: Person() ARGUMENTS: none RETURNS: none NOTES: this is the Person() constructor ****************************************************************/ Person::Person() { } /**************************************************************** FUNCTION: ~Person() ARGUMENTS: none RETURNS: none NOTES: this is the Person destructor ****************************************************************/ Person::~Person() { } /**************************************************************** FUNCTION: setFirstName(const string &x) ARGUMENTS: const string &x - the first name of student RETURNS: none NOTES: this function sets the students first name ****************************************************************/ void Person::setFirstName(string &x) { firstName = x; } /**************************************************************** FUNCTION: getFirstname() const ARGUMENTS: none RETURNS: string firstName NOTES: this function returns the students first name ****************************************************************/ string Person::getFirstName() const { return firstName; } /**************************************************************** FUNCTION: setLastName(const string &x) ARGUMENTS: const string &x - the students last name RETURNS: none NOTES: this function sets the students last name ****************************************************************/ void Person::setLastName(string &x) { lastName = x; } /**************************************************************** FUNCTION: getLastName() const ARGUMENTS: none RETURNS: string lastName NOTES: this function returns the students last name ****************************************************************/ string Person::getLastName() const { return lastName; } /**************************************************************** FUNCTION: setSSN(const string &x) ARGUMENTS: const string &x RETURNS: none NOTES: this function sets the students SSN ****************************************************************/ void Person::setSSN(string &x) { SSN = x; } /**************************************************************** FUNCTION: getSSN() const ARGUMENTS: none RETURNS: string SSN NOTES: this function returns the students SSN ****************************************************************/ string Person::getSSN() const { return SSN; } /**************************************************************** FUNCTION: setDOB(const string &x) ARGUMENTS: const string &x - the students DOB RETURNS: none NOTES: this function sets the students DOB ****************************************************************/ void Person::setDOB(string &x) { DOB = x; } /**************************************************************** FUNCTION: getDOB() const ARGUMENTS: none RETURNS: string DOB NOTES: this function returns the students DOB ****************************************************************/ string Person::getDOB() const { return DOB; } /**************************************************************** FUNCTION: setGender(const string &x) ARGUMENTS: const string &x - the students gender RETURNS: none NOTES: this function sets the student gender ****************************************************************/ void Person::setGender(string &x) { gender = x; } /**************************************************************** FUNCTION: getGender() const ARGUMENTS: none RETURNS: string gender NOTES: this function returns the students gender ****************************************************************/ string Person::getGender() const { return gender; }