Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / DynamicInterface / ExceptionList.inl
blobd175462de1292fbcfc01c46ec273295f2ab193a3
1 // -*- C++ -*-
2 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
4 ACE_INLINE
5 CORBA::ExceptionList::ExceptionList ()
6   : refcount_ (1)
10 ACE_INLINE
11 CORBA::ULong
12 CORBA::ExceptionList::count ()
14   return (CORBA::ULong) this->tc_list_.size ();
17 ACE_INLINE
18 CORBA::ExceptionList_ptr
19 CORBA::ExceptionList::_nil ()
21   return nullptr;
24 ACE_INLINE
25 CORBA::ExceptionList_ptr
26 CORBA::ExceptionList::_duplicate (CORBA::ExceptionList_ptr x)
28   if (x)
29     {
30       x->_incr_refcount ();
31     }
33   return x;
36 TAO_END_VERSIONED_NAMESPACE_DECL