diff options
Diffstat (limited to 'csharp/test/Ice/inheritance/CBI.cs')
-rw-r--r-- | csharp/test/Ice/inheritance/CBI.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/csharp/test/Ice/inheritance/CBI.cs b/csharp/test/Ice/inheritance/CBI.cs new file mode 100644 index 00000000000..55a4d8dae3d --- /dev/null +++ b/csharp/test/Ice/inheritance/CBI.cs @@ -0,0 +1,25 @@ +// ********************************************************************** +// +// 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 CBI : Test.MB.CB +{ + public CBI() + { + } + + public override Test.MA.CAPrx caop(Test.MA.CAPrx p, Ice.Current current) + { + return p; + } + + public override Test.MB.CBPrx cbop(Test.MB.CBPrx p, Ice.Current current) + { + return p; + } +} |