TAO_DynamicInterface 3.1.4
|
ExceptionList definition taken from CORBA v2.2 Feb 1998. More...
#include <ExceptionList.h>
Public Types | |
typedef CORBA::ExceptionList_ptr | _ptr_type |
Useful for template programming. | |
typedef CORBA::ExceptionList_var | _var_type |
typedef CORBA::ExceptionList_out | _out_type |
Public Member Functions | |
ExceptionList () | |
Constructor. | |
ExceptionList (CORBA::ULong len, CORBA::TypeCode_ptr *tc_list) | |
~ExceptionList () | |
Destructor. | |
CORBA::ULong | count () |
Return the number of elements. | |
ExceptionList_ptr | _duplicate () |
Increase the reference count. | |
void | _destroy () |
void | add (CORBA::TypeCode_ptr tc) |
Add a TypeCode to the list. | |
void | add_consume (CORBA::TypeCode_ptr tc) |
Add and consume a TypeCode to the list. | |
CORBA::TypeCode_ptr | item (CORBA::ULong slot) |
Return the typecode at slot i. Raises the "Bounds" exception. | |
void | remove (CORBA::ULong slot) |
Remove the typecode at slot i. Raises the "Bounds" exception. | |
void | _incr_refcount () |
Increment and decrement ref counts. | |
void | _decr_refcount () |
Static Public Member Functions | |
static ExceptionList_ptr | _duplicate (ExceptionList *) |
Increase the reference count in the spec defined manner. | |
static ExceptionList_ptr | _nil () |
Private Member Functions | |
ExceptionList (const ExceptionList &) | |
ExceptionList & | operator= (const ExceptionList &) |
Private Attributes | |
std::atomic< uint32_t > | refcount_ |
Reference counter. | |
ACE_Unbounded_Queue< CORBA::TypeCode_ptr > | tc_list_ |
Internal list of typecodes. | |
ExceptionList definition taken from CORBA v2.2 Feb 1998.
Maintains a list of TypeCodes for Exceptions.
Useful for template programming.
CORBA::ExceptionList::ExceptionList | ( | ) |
Constructor.
CORBA::ExceptionList::ExceptionList | ( | CORBA::ULong | len, |
CORBA::TypeCode_ptr * | tc_list ) |
Constructor - initialize given a length and an array of TypeCodes.
CORBA::ExceptionList::~ExceptionList | ( | ) |
Destructor.
|
private |
void CORBA::ExceptionList::_decr_refcount | ( | ) |
void CORBA::ExceptionList::_destroy | ( | ) |
CORBA::ExceptionList_ptr CORBA::ExceptionList::_duplicate | ( | ) |
Increase the reference count.
|
static |
Increase the reference count in the spec defined manner.
void CORBA::ExceptionList::_incr_refcount | ( | ) |
Increment and decrement ref counts.
|
static |
void CORBA::ExceptionList::add | ( | CORBA::TypeCode_ptr | tc | ) |
Add a TypeCode to the list.
void CORBA::ExceptionList::add_consume | ( | CORBA::TypeCode_ptr | tc | ) |
Add and consume a TypeCode to the list.
CORBA::ULong CORBA::ExceptionList::count | ( | ) |
Return the number of elements.
CORBA::TypeCode_ptr CORBA::ExceptionList::item | ( | CORBA::ULong | slot | ) |
Return the typecode at slot i. Raises the "Bounds" exception.
|
private |
void CORBA::ExceptionList::remove | ( | CORBA::ULong | slot | ) |
Remove the typecode at slot i. Raises the "Bounds" exception.
|
private |
Reference counter.
|
private |
Internal list of typecodes.