My professor doesn't really know how to teach and he teaches really fast.. I just cannot keep up with him. I took a beginners class for C++ and I did well, but now I'm just lost and frustrated that I cannot understand most of the things hes saying..
This is the first project that he asked us to do.. so I need some major help with this..if anyone willing to help me do it that would be wonderful!

Write a program that uses a class. The class definition will be in a separate header file.See documents "Example of class using separate header file" and "header file "as a guide. You will also need to make a file for data (such as employee.dat). See document "Writing to a file" on how to write to a file.The class should have private data members name, salary, years, evaluation score (which can be 1 to 10).The function members should be able to output and modify these data members.Your program should take the name, salary, years, evaluation score from the keyboard and put it into employee.dat.Then if evaluation score is greater than 8, give the person a 1% raise for every year they have worked for the company (4 yrs gets a 4% raise). If evaluation score is less than 3, 10% reduction in salary. Your program should be able to read from the data file and assign raises. Your finished product will therefore have 3 files: the application, the header (class definition), and data file. Your program should compile and run.


I'm trying to work on it as I'm posting this right now.. Hopefully by the time I get back on this forum I'd already figure it out by myself.
Thank you very much for your help in advance! Much appreciated.