diff options
Diffstat (limited to 'cpp/test/Ice/custom/TestAMDI.cpp')
-rw-r--r-- | cpp/test/Ice/custom/TestAMDI.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cpp/test/Ice/custom/TestAMDI.cpp b/cpp/test/Ice/custom/TestAMDI.cpp index de79699ce97..9df910944a7 100644 --- a/cpp/test/Ice/custom/TestAMDI.cpp +++ b/cpp/test/Ice/custom/TestAMDI.cpp @@ -255,6 +255,24 @@ TestIntfI::opCPrxList_async(const Test::AMD_TestIntf_opCPrxListPtr& opCPrxListCB } void +TestIntfI::opCSeq_async(const Test::AMD_TestIntf_opCSeqPtr& opCSeqCB, + const std::deque<Test::CPtr>& inSeq, + const Ice::Current& current) +{ + std::deque<Test::CPtr> outSeq(inSeq); + opCSeqCB->ice_response(outSeq, outSeq); +} + +void +TestIntfI::opCList_async(const Test::AMD_TestIntf_opCListPtr& opCListCB, + const Test::CList& inSeq, + const Ice::Current& current) +{ + Test::CList outSeq(inSeq); + opCListCB->ice_response(outSeq, outSeq); +} + +void TestIntfI::shutdown_async(const Test::AMD_TestIntf_shutdownPtr& shutdownCB, const Ice::Current& current) { |