Create the class declarations for the Employee and Company classes defined below. You only have to provide the declarations, not the function definitions. 1. Employee - private members - the employee's name, a string - the employee's ID number, an int - public members - a constructor which has parameters to set the employee's name and ID number - an accessor function which will return the employee's name - an accessor function which will return the employee's ID number - a mutator function which will set the employee's name - a mutator function which will set the employee's ID number 2. Company - private members - an Employee pointer, which will point to an array of Employee objects - public members - a constructor with no parameters - an accessor function which will return the Employee array pointer - a function called addNewEmployee which takes a single Employee as an argument and returns nothing

Respuesta :

Otras preguntas