#include <CEC_TypedEventChannel.h>
Collaboration diagram for TAO_CEC_Operation_Params:
Private Member Functions | |
TAO_CEC_Operation_Params (CORBA::ULong num_params) | |
constructor | |
~TAO_CEC_Operation_Params (void) | |
destructor | |
Private Attributes | |
CORBA::ULong | num_params_ |
TAO_CEC_Param * | parameters_ |
Friends | |
class | TAO_CEC_TypedEventChannel |
Only the TypedEventChannel can read the private fields. |
Definition at line 359 of file CEC_TypedEventChannel.h.
ACE_INLINE TAO_CEC_Operation_Params::TAO_CEC_Operation_Params | ( | CORBA::ULong | num_params | ) | [private] |
constructor
Definition at line 193 of file CEC_TypedEventChannel.inl.
References parameters_.
00194 : num_params_ (num_params) 00195 { 00196 parameters_ = new TAO_CEC_Param[num_params]; 00197 }
ACE_INLINE TAO_CEC_Operation_Params::~TAO_CEC_Operation_Params | ( | void | ) | [private] |
destructor
Definition at line 200 of file CEC_TypedEventChannel.inl.
References parameters_.
00201 { 00202 delete [] parameters_; 00203 }
friend class TAO_CEC_TypedEventChannel [friend] |
Only the TypedEventChannel can read the private fields.
Definition at line 368 of file CEC_TypedEventChannel.h.
Definition at line 370 of file CEC_TypedEventChannel.h.
Referenced by TAO_CEC_TypedEventChannel::cache_interface_description(), and TAO_CEC_TypedEventChannel::create_operation_list().
Definition at line 371 of file CEC_TypedEventChannel.h.
Referenced by TAO_CEC_TypedEventChannel::cache_interface_description(), TAO_CEC_TypedEventChannel::create_operation_list(), TAO_CEC_Operation_Params(), and ~TAO_CEC_Operation_Params().