Intended Usage
This method is intended to be used to create a TypeCode of kind tk_string, representing an IDL string.
Syntax
CORBA::TypeCode_ptr create_string_tc (CORBA::ULong bound);
Input parameters
Return values
Example
/* Code to create a tk_string TypeCode corresponding to this IDL definition: string <123> my_string; (this is a bounded string) */ /* assume op initialized */ extern CORBA::ORB_ptr op; CORBA::TypeCode_ptr tc = op->create_string_tc (123);