// Department.cpp: implementation of the CDepartment class. // ////////////////////////////////////////////////////////////////////// #include "Department.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CDepartment::CDepartment() { n_computers=0; } CDepartment::~CDepartment() { } CDepartment::CDepartment(int n_comp) //number of computers. { n_computers=n_comp; }