diff options
Diffstat (limited to 'csharp/test/Ice/inheritance/CDI.cs')
-rw-r--r-- | csharp/test/Ice/inheritance/CDI.cs | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/csharp/test/Ice/inheritance/CDI.cs b/csharp/test/Ice/inheritance/CDI.cs new file mode 100644 index 00000000000..93935f40fa2 --- /dev/null +++ b/csharp/test/Ice/inheritance/CDI.cs @@ -0,0 +1,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. +// +// ********************************************************************** + +public sealed class CDI : Test.MA.CD +{ + public CDI() + { + } + + public override Test.MA.CAPrx caop(Test.MA.CAPrx p, Ice.Current current) + { + return p; + } + + public override Test.MA.CCPrx ccop(Test.MA.CCPrx p, Ice.Current current) + { + return p; + } + + public override Test.MA.CDPrx cdop(Test.MA.CDPrx p, Ice.Current current) + { + return p; + } + + public override Test.MA.IAPrx iaop(Test.MA.IAPrx p, Ice.Current current) + { + return p; + } + + public override Test.MB.CBPrx cbop(Test.MB.CBPrx p, Ice.Current current) + { + return p; + } + + public override Test.MB.IB1Prx ib1op(Test.MB.IB1Prx p, Ice.Current current) + { + return p; + } + + public override Test.MB.IB2Prx ib2op(Test.MB.IB2Prx p, Ice.Current current) + { + return p; + } +} |