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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
using System.Collections.Generic;
namespace Ice
{
namespace dictMapping
{
public sealed class MyClassI : Test.MyClassDisp_
{
public override void shutdown(Ice.Current current)
{
current.adapter.getCommunicator().shutdown();
}
public override Dictionary<int, int> opNV(Dictionary<int, int> i, out Dictionary<int, int> o,
Ice.Current current)
{
o = i;
return i;
}
public override Dictionary<string, string> opNR(Dictionary<string, string> i, out Dictionary<string, string> o,
Ice.Current current)
{
o = i;
return i;
}
public override Dictionary<string, Dictionary<int, int>> opNDV(Dictionary<string, Dictionary<int, int>> i,
out Dictionary<string, Dictionary<int, int>> o,
Ice.Current current)
{
o = i;
return i;
}
public override Dictionary<string, Dictionary<string, string>> opNDR(Dictionary<
string, Dictionary<string, string>> i,
out Dictionary<string, Dictionary<string, string>> o,
Ice.Current current)
{
o = i;
return i;
}
public override Dictionary<string, int[]> opNDAIS(Dictionary<string, int[]> i,
out Dictionary<string, int[]> o,
Ice.Current current)
{
o = i;
return i;
}
public override Dictionary<string, List<int>> opNDGIS(Dictionary<string, List<int>> i,
out Dictionary<string, List<int>> o,
Ice.Current current)
{
o = i;
return i;
}
public override Dictionary<string, string[]> opNDASS(Dictionary<string, string[]> i,
out Dictionary<string, string[]> o,
Ice.Current current)
{
o = i;
return i;
}
public override Dictionary<string, List<string>> opNDGSS(Dictionary<string, List<string>> i,
out Dictionary<string, List<string>> o,
Ice.Current current)
{
o = i;
return i;
}
}
}
}
|