📄 seq_worker_t.cpp
字号:
// Seq_Worker_T.cpp,v 1.5 2003/07/06 21:41:59 pradeep Exp
#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__ */
ACE_RCSID(Notify, TAO_Notify_Seq_Worker_T, "Seq_Worker_T.cpp,v 1.5 2003/07/06 21:41:59 pradeep Exp")
template <class T>
TAO_Notify_Seq_Worker_T<T>::TAO_Notify_Seq_Worker_T (void)
{
}
template<class TYPE> ACE_TYPENAME TAO_Notify_Seq_Worker_T<TYPE>::SEQ*
TAO_Notify_Seq_Worker_T<TYPE>::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 ();
}
#endif /* TAO_Notify_SEQ_WORKER_T_CPP */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -