// Department.h: interface for the Department class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_DEPARTMENT_H__6354E51E_059B_4EC7_AFF2_32DF28EB396F__INCLUDED_) #define AFX_DEPARTMENT_H__6354E51E_059B_4EC7_AFF2_32DF28EB396F__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "Student.h" class Department { public: Department(); virtual ~Department(); Student departmentStudents[100]; // The students in the department/ int n_students; // The number of Students char name[15]; // The name of the department. float average_note(); // The average note of the whole department. }; #endif // !defined(AFX_DEPARTMENT_H__6354E51E_059B_4EC7_AFF2_32DF28EB396F__INCLUDED_)