// @topic T00422 Class declaration, class implementation, and main( ) in separate files // @brief Employee header // The header class has the declaration of the Employee class // The implementation of member functions init() and get_id() is in employee.cpp #ifndef _EMPLOYEE_H_INCLUDED_ #define _EMPLOYEE_H_INCLUDED_ class Employee { int m_id; // employee has an id public: void init( int id ); // set id int get_id(); // get id };//class Employee #endif //_EMPLOYEE_H_INCLUDED_