Please report new issues athttps://github.com/DOCGroup
CCM adds the following to the CORBA::ORB interface: TypeCode create_component_tc ( in RepositoryId id, in Identifier name ); TypeCode create_home_tc ( in RepositoryId id, in Identifier name ); TypeCode create_event_tc ( in RepositoryId id, in Identifier name, in ValueModifier type_modifier, in TypeCode concrete_base, in ValueMemberSeq members ); --------------- CCM adds the following to the CORBA::Object and CORBA::LocalObject interfaces: Object get_component (); CORBA::LocalObject::get_component() is required to throw CORBA::NO_IMPLEMENT. --------------- CCM adds the following TCKinds: tk_component, tk_home, tk_event in addition to the following TypeCode constants: TC_Component = tk_component {CCMObject} TC_Home = tk_home {CCMHome} TC_EventBase = tk_event {EventBase}
This is required for CORBA 3.0 compliance in the TAO 1.3 release.
I implemented get_component() a while back. But I either missed the special case in LocalObject, or it wasn't mentioned in the draft spec. Anyway, it's trivial to add it (throwing NO_IMPLEMENT ;-) and I'll add it after 1.2.4. I'll need Jeff's help with those typecode functions, however..
The methods and TypeCodes in question were added some time back.