//Beginning definitons page #include #include "employee.h" using namespace std; //Definitions of Interface file Employee::Employee() { } Employee::Employee( double) { } void Employee::compute_salary () { } istream& operator >>(istream& ins, Employee& the_object) { /* //cout << "Please enter your Social Security Number [Limit of 9 digits or Less ONLY]" << endl; // cin >> the_object.ssn[11]; cout << "Please enter your identification number [Limit of 9 digits or Less ONLY]" << endl; // ins >> Employee.id[3];*/ return ( ins ); } ostream& operator <<(ostream& outs, const Employee& emp) { return ( outs ); }