diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-02-07 14:26:23 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-02-07 14:26:23 +0000 |
commit | 3d5721d40940b2361d0708b81c390f490e5e06b3 (patch) | |
tree | 0c82879298a1b197c85a885332849d4c2072bda8 /cpp/test/Ice/custom/TestAMDI.cpp | |
parent | Fixed windows build of custom AMD server (diff) | |
download | ice-3d5721d40940b2361d0708b81c390f490e5e06b3.tar.bz2 ice-3d5721d40940b2361d0708b81c390f490e5e06b3.tar.xz ice-3d5721d40940b2361d0708b81c390f490e5e06b3.zip |
Fixed sequences of classes
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) { |