10.4.5 IDLType Interface
The base interface IDLType (shown below) is inherited by all Interface Repository objects that represent OMG IDL types. It provides access to the TypeCode describing the type, and is used in defining other interfaces wherever definitions of IDL types must be referenced.
module CORBA {
interface IDLType : IRObject {
readonly attribute TypeCode type;
};
};
The type
attribute describes the type defined by an
object derived from IDLType.
Parent topic: Interface Repository Interfaces