// Division.h: interface for the CDivision class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_DIVISION_H__2CFAD8C6_F435_11D7_8B8F_00E0189B8E0A__INCLUDED_) #define AFX_DIVISION_H__2CFAD8C6_F435_11D7_8B8F_00E0189B8E0A__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "Department.h" class CDivision { public: CDivision(); virtual ~CDivision(); CDivision::CDivision(CDepartment depart1, CDepartment depart2); CDivision::CDivision(CDepartment depart1); int CDivision::count(); // counts the number of the computers. int n_departments; // number of departments. CDepartment department1; CDepartment department2; }; #endif // !defined(AFX_DIVISION_H__2CFAD8C6_F435_11D7_8B8F_00E0189B8E0A__INCLUDED_)