Re: [fpc-pascal] CORBA interfaces: no IInterface and TInterfaceList support

2016-10-08 Thread Sven Barth
Am 09.10.2016 00:13 schrieb "Graeme Geldenhuys" < mailingli...@geldenhuys.co.uk>: > > Hi, > > Why doesn't CORBA have the equivalent of IInterface? Because that interface type doesn't need it, just like TP-style objects don't need it. IInterface (aka IUnknown) merely exists due to the reference cou

[fpc-pascal] CORBA interfaces: no IInterface and TInterfaceList support

2016-10-08 Thread Graeme Geldenhuys
Hi, Why doesn't CORBA have the equivalent of IInterface? I have to resort to creating something like this. type IEmptyInterface = interface ['{C2196B92-8D96-11E6-A5D6-C86000E37EB0}'] end; and and then make sure all my CORBA interfaces descend from IEmptyInterface. The reason I need to do