00001 // -*- C++ -*- 00002 // 00003 // $Id: CEC_TypedEvent.inl 73791 2006-07-27 20:54:56Z wotte $ 00004 00005 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00006 00007 ACE_INLINE 00008 TAO_CEC_TypedEvent::TAO_CEC_TypedEvent (void) 00009 { 00010 } 00011 00012 ACE_INLINE 00013 TAO_CEC_TypedEvent::TAO_CEC_TypedEvent (CORBA::NVList_ptr list, 00014 const char * operation) 00015 : list_ (list), 00016 operation_ (operation) 00017 { 00018 } 00019 00020 ACE_INLINE 00021 TAO_CEC_TypedEvent& 00022 TAO_CEC_TypedEvent::operator= (const TAO_CEC_TypedEvent& other) 00023 { 00024 this->list_ = CORBA::NVList::_duplicate (other.list_); 00025 this->operation_ = CORBA::string_dup (other.operation_); 00026 00027 return *this; 00028 } 00029 00030 TAO_END_VERSIONED_NAMESPACE_DECL