| IDL Complex Type | |
| struct | The CORBA struct is represented by a .NET class type that has the [Serializable] attribute for .Net serializing. The class members in Delphi class type corresponding to the CORBA data elements. It maps to two Delphi's classes as follow. |
// CORBA IDL |
struct Node
{
string name;
};
|
e.g. Node NodeHelper |
{ Delphi }
-- TBD
|