// -*- C++ -*- #include "ace/Global_Macros.h" ACE_BEGIN_VERSIONED_NAMESPACE_DECL template ACE_INLINE void ACE_Event_Handler_T::op_handler (T *op) { ACE_TRACE ("ACE_Event_Handler_T::op_handler"); this->op_handler_ = op; } template ACE_INLINE T * ACE_Event_Handler_T::op_handler () { ACE_TRACE ("ACE_Event_Handler_T::op_handler"); return this->op_handler_; } template ACE_INLINE typename ACE_Event_Handler_T::GET_HANDLE ACE_Event_Handler_T::handle_get () { ACE_TRACE ("ACE_Event_Handler_T::handle_get"); return this->get_handle_; } template ACE_INLINE void ACE_Event_Handler_T::handle_get (typename ACE_Event_Handler_T::GET_HANDLE h) { ACE_TRACE ("ACE_Event_Handler_T::handle_get"); this->get_handle_ = h; } template ACE_INLINE typename ACE_Event_Handler_T::SET_HANDLE ACE_Event_Handler_T::handle_set () { ACE_TRACE ("ACE_Event_Handler_T::handle_set"); return this->set_handle_; } template ACE_INLINE void ACE_Event_Handler_T::handle_set (typename ACE_Event_Handler_T::SET_HANDLE h) { ACE_TRACE ("ACE_Event_Handler_T::handle_set"); this->set_handle_ = h; } template ACE_INLINE typename ACE_Event_Handler_T::IO_HANDLER ACE_Event_Handler_T::input_handler () { ACE_TRACE ("ACE_Event_Handler_T::input_handler"); return this->input_handler_; } template ACE_INLINE void ACE_Event_Handler_T::input_handler (typename ACE_Event_Handler_T::IO_HANDLER h) { ACE_TRACE ("ACE_Event_Handler_T::input_handler"); this->input_handler_ = h; } template ACE_INLINE typename ACE_Event_Handler_T::IO_HANDLER ACE_Event_Handler_T::output_handler () { ACE_TRACE ("ACE_Event_Handler_T::output_handler"); return this->output_handler_; } template ACE_INLINE void ACE_Event_Handler_T::output_handler (typename ACE_Event_Handler_T::IO_HANDLER h) { ACE_TRACE ("ACE_Event_Handler_T::output_handler"); this->output_handler_ = h; } template ACE_INLINE typename ACE_Event_Handler_T::IO_HANDLER ACE_Event_Handler_T::except_handler () { ACE_TRACE ("ACE_Event_Handler_T::except_handler"); return this->except_handler_; } template ACE_INLINE void ACE_Event_Handler_T::except_handler (typename ACE_Event_Handler_T::IO_HANDLER h) { ACE_TRACE ("ACE_Event_Handler_T::except_handler"); this->except_handler_ = h; } template ACE_INLINE typename ACE_Event_Handler_T::TO_HANDLER ACE_Event_Handler_T::to_handler () { ACE_TRACE ("ACE_Event_Handler_T::to_handler"); return this->to_handler_; } template ACE_INLINE void ACE_Event_Handler_T::to_handler (typename ACE_Event_Handler_T::TO_HANDLER h) { ACE_TRACE ("ACE_Event_Handler_T::to_handler"); this->to_handler_ = h; } template ACE_INLINE typename ACE_Event_Handler_T::CL_HANDLER ACE_Event_Handler_T::cl_handler () { ACE_TRACE ("ACE_Event_Handler_T::cl_handler"); return this->cl_handler_; } template ACE_INLINE void ACE_Event_Handler_T::cl_handler (typename ACE_Event_Handler_T::CL_HANDLER h) { ACE_TRACE ("ACE_Event_Handler_T::cl_handler"); this->cl_handler_ = h; } template ACE_INLINE typename ACE_Event_Handler_T::SIG_HANDLER ACE_Event_Handler_T::sig_handler () { ACE_TRACE ("ACE_Event_Handler_T::sig_handler"); return this->sig_handler_; } template ACE_INLINE void ACE_Event_Handler_T::sig_handler (typename ACE_Event_Handler_T::SIG_HANDLER h) { ACE_TRACE ("ACE_Event_Handler_T::sig_handler"); this->sig_handler_ = h; } ACE_END_VERSIONED_NAMESPACE_DECL