class Department { . . . private: string name; Employee* receptionist; };
class Department // modeled without pointer { . . . private: string name; bool has_receptionist; Employee receptionist; };