/* CS471B Assignment 2: University Instructor: Wade Holst Submitted by: Dan Fraser Student number: 001219229 File Name: FacultyComponent.h File description: Superclass for Faculty Component pattern */ #ifndef _FACULTY_COMPONENT_ #define _FACULTY_COMPONENT_ #include #include "Interface.h" //#include "DepartmentComponent.h" class DepartmentComponent; class FacultyComponent : public Interface { public: // these should be overridden by the composite virtual void add(DepartmentComponent *) {}; virtual void del(DepartmentComponent *) {}; }; #endif