| IDL Complex Type | |
| array | The CORBA array maps to Delphi's array type. A Delphi helper class is generated to ease the conversion from Corba sequence into Delphi's array or visa versa. |
// CORBA IDL |
module demo
{
module arrays
{
typedef MyServer servers[2];
}
}
|
e.g. serversHelper |
{ Delphi }
--TBD
|