#include <String_TypeCode_Traits.h>
Static Public Member Functions | |
CORBA::TypeCode_ptr | create_typecode (CORBA::TCKind kind, CORBA::ULong bound) |
|
Definition at line 60 of file String_TypeCode_Traits.h. References ACE_NEW_RETURN, and CORBA::TypeCode_ptr.
00062 { 00063 typedef TAO::TypeCode::String<TAO::True_RefCount_Policy> typecode_type; 00064 00065 CORBA::TypeCode_ptr tc = CORBA::TypeCode_ptr (); 00066 ACE_NEW_RETURN (tc, 00067 typecode_type (kind, bound), 00068 tc); 00069 00070 return tc; 00071 } |