// @topic T00423 Class declaration, class implementation, and main( ) in separate files
// @brief Employee class implementation
// The implementation of member functions init() and get_id()

#include "employee.h"

// set employee id
void Employee::init( int id )
{
    m_id = id;
}

// get employee id
int Employee::get_id()
{
    return m_id;
}