// // 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 opNV(Dictionary i, out Dictionary o, Ice.Current current) { o = i; return i; } public override Dictionary opNR(Dictionary i, out Dictionary o, Ice.Current current) { o = i; return i; } public override Dictionary> opNDV(Dictionary> i, out Dictionary> o, Ice.Current current) { o = i; return i; } public override Dictionary> opNDR(Dictionary< string, Dictionary> i, out Dictionary> o, Ice.Current current) { o = i; return i; } public override Dictionary opNDAIS(Dictionary i, out Dictionary o, Ice.Current current) { o = i; return i; } public override Dictionary> opNDGIS(Dictionary> i, out Dictionary> o, Ice.Current current) { o = i; return i; } public override Dictionary opNDASS(Dictionary i, out Dictionary o, Ice.Current current) { o = i; return i; } public override Dictionary> opNDGSS(Dictionary> i, out Dictionary> o, Ice.Current current) { o = i; return i; } } } }