exceptionlist.inl
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· INL 代码 · 共 56 行
INL
56 行
// -*- C++ -*-
//
// ExceptionList.inl,v 1.5 2003/04/22 20:49:59 bala Exp
ACE_INLINE
void
CORBA::release (CORBA::ExceptionList_ptr x)
{
if (x != 0)
{
x->_decr_refcnt ();
}
}
ACE_INLINE
CORBA::Boolean
CORBA::is_nil (CORBA::ExceptionList_ptr x)
{
return (CORBA::Boolean) (x == 0);
}
// ===================================================================
ACE_INLINE
CORBA::ExceptionList::ExceptionList (void)
: ref_count_ (1)
{
}
ACE_INLINE
CORBA::ULong
CORBA::ExceptionList::count (void)
{
return (CORBA::ULong) this->tc_list_.size ();
}
ACE_INLINE
CORBA::ExceptionList_ptr
CORBA::ExceptionList::_nil (void)
{
return (CORBA::ExceptionList_ptr)0;
}
ACE_INLINE
CORBA::ExceptionList_ptr
CORBA::ExceptionList::_duplicate (CORBA::ExceptionList_ptr x)
{
if (x != 0)
{
x->_incr_refcnt ();
}
return x;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?