#include <DynamicC.h>
Inheritance diagram for Dynamic::_TAO_Unbounded_Object_Sequence_Dynamic_ExceptionList:
Public Methods | |
_TAO_Unbounded_Object_Sequence_Dynamic_ExceptionList (void) | |
_TAO_Unbounded_Object_Sequence_Dynamic_ExceptionList (CORBA::ULong maximum) | |
_TAO_Unbounded_Object_Sequence_Dynamic_ExceptionList (CORBA::ULong maximum, CORBA::ULong length, CORBA::TypeCode **value, CORBA::Boolean release=0) | |
_TAO_Unbounded_Object_Sequence_Dynamic_ExceptionList (const _TAO_Unbounded_Object_Sequence_Dynamic_ExceptionList &rhs) | |
_TAO_Unbounded_Object_Sequence_Dynamic_ExceptionList & | operator= (const _TAO_Unbounded_Object_Sequence_Dynamic_ExceptionList &rhs) |
virtual | ~_TAO_Unbounded_Object_Sequence_Dynamic_ExceptionList (void) |
TAO_Pseudo_Object_Manager< Dynamic::TypeCode, Dynamic::TypeCode_var > | operator[] (CORBA::ULong index) const |
virtual void | _allocate_buffer (CORBA::ULong length) |
Ensure that the buffer contains space for at least <length> elements. More... | |
virtual void | _deallocate_buffer (void) |
Must deallocate the buffer and then set it to zero. More... | |
CORBA::TypeCode ** | get_buffer (CORBA::Boolean orphan=0) |
const CORBA::TypeCode ** | get_buffer (void) const |
virtual void | _shrink_buffer (CORBA::ULong nl, CORBA::ULong ol) |
Some sequences (of objects and strings) require some cleanup if the sequence is shrunk. More... | |
Static Public Methods | |
CORBA::TypeCode ** | allocbuf (CORBA::ULong nelems) |
void | freebuf (CORBA::TypeCode **buffer) |
|
|
|
|
|
|
|
|
|
|
|
Ensure that the buffer contains space for at least <length> elements. The constructor must be called for any new elements, the old ones (if any) must be copied into the buffer using operator= and then their destructors must be called. Finally the old buffer must be released. Reimplemented from TAO_Base_Sequence. |
|
Must deallocate the buffer and then set it to zero.
Reimplemented from TAO_Base_Sequence. |
|
Some sequences (of objects and strings) require some cleanup if the sequence is shrunk. The spec requires the destructor to release the objects only from position <0> to <length-1>; so shrink and then delete could result in a memory leak. Reimplemented from TAO_Base_Sequence. |
|
|
|
|
|
|
|
|
|
|
|
|