summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/inheritance/CAI.cs
blob: e9e7d8c19e12d4fbc181850f6ea04d45ffd6656e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

namespace Ice
{
    namespace inheritance
    {
        public sealed class CAI : Test.MA.CADisp_
        {
            public CAI()
            {
            }

            public override Test.MA.CAPrx caop(Test.MA.CAPrx p, Ice.Current current)
            {
                return p;
            }
        }
    }
}