OOD: Employee

employees

Implement a class Employee_YI. An employee has a name (a string) and a salary (a double). Write a default constructor, a constructor with two parameters (name and salary), and methods to return the name and salary. Write a tester/driver program that tests your class.
 

NOTE: Do not forget to document your work. Include header, a comment line for each method and constructor and input/output.