summaryrefslogtreecommitdiff
path: root/objective-c/test/Ice/inheritance/TestI.h
blob: 29cb798e6b09f5fc33e3d120edfde37bae4ab826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// **********************************************************************
//
// Copyright (c) 2003-2015 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 <InheritanceTest.h>

@interface TestInheritanceInitialI : TestInheritanceInitial<TestInheritanceInitial>
{
    id<ICEObjectAdapter> adapter_;
    id<TestInheritanceMACAPrx> ca_;
    id<TestInheritanceMBCBPrx> cb_;
    id<TestInheritanceMACCPrx> cc_;
    id<TestInheritanceMACDPrx> cd_;
    id<TestInheritanceMAIAPrx> ia_;
    id<TestInheritanceMBIB1Prx> ib1_;
    id<TestInheritanceMBIB2Prx> ib2_;
    id<TestInheritanceMAICPrx> ic_;
}
-(id)initWithAdapter:(id<ICEObjectAdapter>) adapter;
@end

@interface CAI : TestInheritanceMACA<TestInheritanceMACA>
@end

@interface CBI : TestInheritanceMBCB<TestInheritanceMBCB>
@end

@interface CCI : TestInheritanceMACC<TestInheritanceMACC>
@end

@interface IAI : TestInheritanceMAIA<TestInheritanceMAIA>
@end

@interface IB1I : TestInheritanceMBIB1<TestInheritanceMBIB1>
@end

@interface IB2I : TestInheritanceMBIB2<TestInheritanceMBIB2>
@end

@interface ICI : TestInheritanceMAIC<TestInheritanceMAIC>
@end

@interface CDI : TestInheritanceMACD<TestInheritanceMACD>
@end