summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/facets/EI.cs
blob: dd8586c85135d19a0685cc7855996c5d5466b159 (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 facets
    {
        public sealed class EI : Test.EDisp_
        {
            public EI()
            {
            }

            public override string callE(Ice.Current current)
            {
                return "E";
            }
        }
    }
}