summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/inheritance/CBI.cs
blob: 637cc841d862806ed2795fe1529e750953a7b652 (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
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

namespace Ice
{
    namespace inheritance
    {
        public sealed class CBI : Test.MB.CBDisp_
        {
            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;
            }
        }
    }
}