#include <String_TypeCode_Traits.h>
Static Public Member Functions | |
CORBA::TypeCode_ptr | create_typecode (CORBA::TCKind kind, CORBA::ULong bound) |
|
Definition at line 43 of file String_TypeCode_Traits.h. References ACE_NEW_RETURN, and CORBA::TypeCode_ptr.
00045 { 00046 typedef TAO::TypeCode::String<TAO::True_RefCount_Policy> typecode_type; 00047 00048 CORBA::TypeCode_ptr tc = CORBA::TypeCode_ptr (); 00049 ACE_NEW_RETURN (tc, 00050 typecode_type (kind, bound), 00051 tc); 00052 00053 return tc; 00054 } |