Write a C++ program. Define a class called HourlyEmployee that inherits the Employee Class provided. The class must have private attributes to store the total hours worked, the total regular hours worked (sum of hours ≤ 40), and the total overtime hours worked (sum of hours > 40). The class must also have member functions to perform the following tasks: • A constructor to initialize the first name, last name, and pay rate (See the Employee Class for more details). • A setter function to set the hours work for the month (by the week – assume 4 weeks in a month). Do not write separate setters for total regular and total overtime hours. Use a while/for loop that iterates four times to read the hours worked from the user and call the setter function four times. The header of the member function should look like this: void setTotalHoursWorked(double hoursWorked) • A getter function to return ⬧ the total regular hours work for the month ⬧ the total overtime hours for the month ⬧ the monthly regular pay ⬧ the monthly overtime pay • A member function that displays the output which must include the following information: ⬧ Employee's first and last name ⬧ Pay rate ⬧ Total regular hours worked ⬧ Total overtime hours worked ⬧ Total hours worked ⬧ Monthly Regular Pay ⬧ Monthly overtime pay ⬧ Monthly gross pay ⬧ Monthly taxes ⬧ Monthly net pay Allow the user to run the program as many times as possible until a sentinel name value, “no”, has been entered for the first name. No input, processing, or output should happen in the main function. All work in the test class should be delegated to other non-static functions in the class. Include the recommended minimum documentation for each function. Don’t forget to include the developerInfo function.
Write a C++ program. Define a class called HourlyEmployee that inherits the Employee Class provided. The class must have private attributes to store the total hours worked, the total regular hours worked (sum of hours ≤ 40), and the total overtime hours worked (sum of hours > 40).
The class must also have member functions to perform the following tasks:
• A constructor to initialize the first name, last name, and pay rate (See the Employee Class for more details).
• A setter function to set the hours work for the month (by the week – assume 4 weeks in a month). Do not write separate setters for total regular and total overtime hours. Use a while/for loop that iterates four times to read the hours worked from the user and call the setter function four times. The header of the member function should look like this:
void setTotalHoursWorked(double hoursWorked)
• A getter function to return
⬧ the total regular hours work for the month
⬧ the total overtime hours for the month
⬧ the monthly regular pay
⬧ the monthly overtime pay
• A member function that displays the output which must include the following
information:
⬧ Employee's first and last name
⬧ Pay rate
⬧ Total regular hours worked
⬧ Total overtime hours worked
⬧ Total hours worked
⬧ Monthly Regular Pay
⬧ Monthly overtime pay
⬧ Monthly gross pay
⬧ Monthly taxes
⬧ Monthly net pay
Allow the user to run the program as many times as possible until a sentinel name value, “no”, has been entered for the first name.
No input, processing, or output should happen in the main function. All work in the test class should be delegated to other non-static functions in the class. Include the recommended minimum documentation for each function. Don’t forget to include the developerInfo function.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps