i have attached the question and the files make sure to write it in c++
Jane Murphy 79
Clarke Griffith 98
Craig Bellamy 67
Manny Rhodes 82
Robert Reyes 72
Alexis Rodrigues 87
Daniel Proctor 53
Oliver Kostermann 60
Rachel Constantine 91
Nagisa Hiroyama 85
Simone Xypher 97
Jason Rundelhause 75
Ross Phillips 51
David Bentley 80
Rea Monroe 48Create a class courseClass that contains a list capable of storing a maximum of 30 courseNames,
course Department and CourseLevel (let this be an integer, assume there can be 3 levels, 1, 2 and 3).
Your class should be able to perform the following operations
a. Constructor – This takes in the name of a file as an input and reads into the list
b. PrintCourse – This prints the name of every course in the list
Print Department – This takes in the name of a department, and prints every course offered
in that department
d. PrintLevel – This takes in a level (1, 2 or 3), and prints the name of every course of that level
e. SearchCourse – This takes in the name of a course and searches the list, it should print the
department and level of the course if found, and an appropriate message if not found
C.
Write the definition of the class and it’s functions. (10 pts)