Intended Usage
This method is used to create a TypeCode of kind tk_array, representing an IDL array.
Syntax
CORBA::TypeCode_ptr create_array_tc ( CORBA::ULong length, CORBA::TypeCode_ptr element_type_code);
Input parameters
Return values
Example
/* Code to create a tk_array TypeCode corresponding to this IDL definition: "typedef string my_string[1997];" */ /* assume op initialized */ extern CORBA::ORB_ptr op; CORBA::TypeCode_ptr tc = op->create_array_tc(1997, CORBA::_tc_string);