IDL Complex Type
constant The CORBA constant defines some unchanged values within the current scope.  It maps to Delphi's const type under constant declaration block.
// CORBA IDL
// 
// Case #1 : defiine constant inside an module
//

module test
{
   const long foo = 1;
}
 
{ Delphi }

-- TBD --
// CORBA IDL
//
// Case #2 : define constant inside an interface
//

interface test
{
   const long foo = 1;
}
 
{ Delphi }

-- TBD --
// CORBA IDL
//
// Case #3 : define constant inside an valuetype
//
// CORBA IDL

valuetype test
{
   const long foo = 1;
}
 
{ Delphi }

-- TBD