#include <DynAnyUtils_T.h>
Static Public Member Functions | |
void | set_flag_t (DynamicAny::DynAny_ptr component, CORBA::Boolean destroying) |
|
Definition at line 93 of file DynAnyUtils_T.cpp. Referenced by TAO_DynCommon::set_flag().
00095 { 00096 T *tmp = T::_narrow (component); 00097 00098 if (destroying) 00099 { 00100 tmp->container_is_destroying (true); 00101 } 00102 else 00103 { 00104 tmp->ref_to_component (true); 00105 } 00106 } |