Question: Please solve the following C++ programming problem In a particular factory, a team leader is an hourly paid production worker who leads a small team.
Please solve the following C++ programming problem
In a particular factory, a team leader is an hourly paid production worker who leads a small team. In addition to hourly pay, team leaders earn a fixed monthly bonus. Team leaders are required to attend a minimum number of hours of training per year. Design a TeamLeader class that extends the ProductionWorker class you designed in Programming Challenge 1. The TeamLeader class should have member variables for the monthly bonus amount, the required number of training hours, and the number of training hours that the team leader has attended. Write one or more constructors and the appropriate accessor and mutator functions for the class. Demonstrate the class by writing a program that uses a TeamLeader object.
can you please break it up so that I can see the different classes and the main.cpp sections
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
