// $Id$ #ifndef TAO_Notify_SEQ_WORKER_T_CPP #define TAO_Notify_SEQ_WORKER_T_CPP #include "Seq_Worker_T.h" #if ! defined (__ACE_INLINE__) #include "Seq_Worker_T.inl" #endif /* __ACE_INLINE__ */ TAO_BEGIN_VERSIONED_NAMESPACE_DECL template TAO_Notify_Seq_Worker_T::TAO_Notify_Seq_Worker_T (void) { } template ACE_TYPENAME TAO_Notify_Seq_Worker_T::SEQ* TAO_Notify_Seq_Worker_T::create (CONTAINER &container ACE_ENV_ARG_DECL) { SEQ* tmp; ACE_NEW_THROW_EX (tmp, //this->seq_, SEQ (), CORBA::INTERNAL ()); this->seq_ = tmp; container.collection ()->for_each (this ACE_ENV_ARG_PARAMETER); ACE_CHECK_RETURN (0); return this->seq_._retn (); } TAO_END_VERSIONED_NAMESPACE_DECL #endif /* TAO_Notify_SEQ_WORKER_T_CPP */