I'm new to C++ and currently have this assignment that I cant figure out. I can get the gross pay to display without doing the class object but the assignment question asks to use a class function. As the code is below it just gives me $0.00 for all 7 employees. Below is the assignment question, can anyone give me some hints on what I'm missing or doing wrong here, Thanks!
*********************************** QUESTION ***********************************
Design a PayRoll class that has data members for an employee’s hourly pay rate and number of hours worked. Write a program with an array of seven PayRoll objects. The program should read the number of hours each employee worked and their hourly pay rate from a file and call class functions to store this information in the appropriate objects. It should then call a class function, once for each object, to return the employee’s gross pay, so this information can be displayed. Sample data to test this program can be found in the payroll.dat file.