// Project 3 : Employee Database Part 3 // Programmer : Sean Smith // Class : CSC215 // Professor : Phill Miller #include #include using namespace std; // Setting Initializing Namespace namespace employeeNamespace { // Declaring EmployeeInfo Class class Employee { private: // Declaring Variables string employeeName; string employeeJobTitle; float employeeWage; float employeeHours; public: // Constructor Employee (string name, string job, float pay, float hours); // Destructor ~Employee(); // Declaring 'Get' Accessor Functions string GetEmployeeName() const { return employeeName; } string GetEmployeeJobTitle() const { return employeeJobTitle; } float GetEmployeeWage() const { return employeeWage; } float GetEmployeeHours() const { return employeeHours; } // Declaring 'Set' Accessor Functions void SetEmployeeName(string name) { employeeName = name; } void SetEmployeeJobTitle(string job) { employeeJobTitle = job; } void SetEmployeeWage(float wage) { employeeWage = wage; } void SetEmployeeHours(float hours) { employeeHours = hours; } }; }