1 //
2 // Copyright (c) ZeroC, Inc. All rights reserved.
3 //
4 
5 namespace Ice
6 {
7     namespace inheritance
8     {
9         public sealed class CDI : Test.MA.CDDisp_
10         {
CDI()11             public CDI()
12             {
13             }
14 
caop(Test.MA.CAPrx p, Ice.Current current)15             public override Test.MA.CAPrx caop(Test.MA.CAPrx p, Ice.Current current)
16             {
17                 return p;
18             }
19 
ccop(Test.MA.CCPrx p, Ice.Current current)20             public override Test.MA.CCPrx ccop(Test.MA.CCPrx p, Ice.Current current)
21             {
22                 return p;
23             }
24 
cdop(Test.MA.CDPrx p, Ice.Current current)25             public override Test.MA.CDPrx cdop(Test.MA.CDPrx p, Ice.Current current)
26             {
27                 return p;
28             }
29 
iaop(Test.MA.IAPrx p, Ice.Current current)30             public override Test.MA.IAPrx iaop(Test.MA.IAPrx p, Ice.Current current)
31             {
32                 return p;
33             }
34 
cbop(Test.MB.CBPrx p, Ice.Current current)35             public override Test.MB.CBPrx cbop(Test.MB.CBPrx p, Ice.Current current)
36             {
37                 return p;
38             }
39 
ib1op(Test.MB.IB1Prx p, Ice.Current current)40             public override Test.MB.IB1Prx ib1op(Test.MB.IB1Prx p, Ice.Current current)
41             {
42                 return p;
43             }
44 
ib2op(Test.MB.IB2Prx p, Ice.Current current)45             public override Test.MB.IB2Prx ib2op(Test.MB.IB2Prx p, Ice.Current current)
46             {
47                 return p;
48             }
49         }
50     }
51 }
52