#include <DynAnyUtils_T.h>
Static Public Member Functions | |
| static void | set_flag_t (DynamicAny::DynAny_ptr component, CORBA::Boolean destroying) |
Definition at line 51 of file DynAnyUtils_T.h.
| void TAO::DynAnyFlagUtils< T >::set_flag_t | ( | DynamicAny::DynAny_ptr | component, | |
| CORBA::Boolean | destroying | |||
| ) | [static] |
Definition at line 93 of file DynAnyUtils_T.cpp.
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 }
1.4.7