· Please create a C++ program that generates a student class reservation system. There will be 8 courses to choose from which is included as Project2.txt. There is data in the file that you will need for your program to run and update. You are use a class type called Courses which will include the data (a-f) as the fields to be used.
o The public fields are as follows:
a) Course Name
b) Class size
c) Students currently in the class
d) Day(s) of the class (mw = Monday & Wednesday, tr = Tuesday & Thursday)
e) Beginning time of the class
f) Ending time of the class
o The private field is as follows:
§ Student
o The methods are as follows:
§ PrintCourses
§ AddUserToClass
§ PrintStudentSchedule
§ UpdateClassList
o You are to add the user (yourself) to 2 courses
o Your program should let the user select what type operation is desired?
§ List available courses (PrintCourses)
§ Add student to the class (only done if there are openings)
· (AddUserToClass)
· Must create a new file called changesToSchedule.txt
· Output to file:
o Student name
o Course Name
o Students currently in the class (add 1 more to the existing number)
§ Display student schedule (PrintStudentSchedule)
· Display Student name
· Classes added including actual schedule
§ Show all courses (UpdateClassList)
§ exit
CAN NOT USE VECTORS