// ********************************************************************** // // Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #import @interface TestInheritanceInitialI : TestInheritanceInitial { id adapter_; id ca_; id cb_; id cc_; id cd_; id ia_; id ib1_; id ib2_; id ic_; } -(id)initWithAdapter:(id) adapter; @end @interface CAI : TestInheritanceMACA @end @interface CBI : TestInheritanceMBCB @end @interface CCI : TestInheritanceMACC @end @interface IAI : TestInheritanceMAIA @end @interface IB1I : TestInheritanceMBIB1 @end @interface IB2I : TestInheritanceMBIB2 @end @interface ICI : TestInheritanceMAIC @end @interface CDI : TestInheritanceMACD @end