IDL Complex Type
abstract valuetype

The CORBA abstact valuetype (TBD) ...... 

It maps to Delphi's class type.

// CORBA IDL 
abstract valuetype aValueBase
{
   readonly attribute long number;
   void print_base();
};
e.g.
aValueBase
aValueBaseHelper
{ Delphi }
					 
-- TBD