summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Seq_Worker_T.cpp
blob: d6a9d03f7f217fba117ac83660076e997df11516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// $Id$

#ifndef TAO_NS_SEQ_WORKER_T_CPP
#define TAO_NS_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_NS_Seq_Worker_T, "$id$")

template <class T>
TAO_NS_Seq_Worker_T<T>::TAO_NS_Seq_Worker_T (void)
{
}

template<class TYPE> TAO_NS_Seq_Worker_T<TYPE>::SEQ*
TAO_NS_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_NS_SEQ_WORKER_T_CPP */