/* * Consultant.cc */ #include "Consultant.h" #include "CRN.h" #include "Date.h" #include namespace IDA_Person { using namespace std; string Consultant::str() const { return Employee::str() + " and Consultant"; } } // namespace IDA_Person