00001 // -*- C++ -*- 00002 // 00003 // LSOCK_Dgram.inl,v 4.2 2005/10/28 16:14:52 ossama Exp 00004 00005 ACE_BEGIN_VERSIONED_NAMESPACE_DECL 00006 00007 ACE_INLINE void 00008 ACE_LSOCK_Dgram::set_handle (ACE_HANDLE h) 00009 { 00010 ACE_TRACE ("ACE_LSOCK_Dgram::set_handle"); 00011 this->ACE_SOCK_Dgram::set_handle (h); 00012 this->ACE_LSOCK::set_handle (h); 00013 } 00014 00015 ACE_INLINE ACE_HANDLE 00016 ACE_LSOCK_Dgram::get_handle (void) const 00017 { 00018 ACE_TRACE ("ACE_LSOCK_Dgram::get_handle"); 00019 return this->ACE_SOCK_Dgram::get_handle (); 00020 } 00021 00022 ACE_END_VERSIONED_NAMESPACE_DECL