summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Seq_Worker_T.inl
blob: a3e0ab4568594419a94d47c008f2f869d93d1e18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

template<class TYPE> ACE_INLINE void
TAO_Notify_Seq_Worker_T<TYPE>::work (TYPE* type)
{
  this->seq_->length (this->seq_->length () + 1);

  this->seq_[this->seq_->length () - 1] = type->id ();
}

TAO_END_VERSIONED_NAMESPACE_DECL