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/TestI.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/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/custom/TestI.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cpp/test/Ice/custom/TestI.cpp b/cpp/test/Ice/custom/TestI.cpp index f0620b39043..ab63e70cab5 100644 --- a/cpp/test/Ice/custom/TestI.cpp +++ b/cpp/test/Ice/custom/TestI.cpp @@ -254,6 +254,24 @@ TestIntfI::opCPrxList(const std::list< ::Test::CPrx>& inSeq, return inSeq; } +std::deque< ::Test::CPtr> +TestIntfI::opCSeq(const std::deque< ::Test::CPtr>& inSeq, + std::deque< ::Test::CPtr>& outSeq, + const Ice::Current& current) +{ + outSeq = inSeq; + return inSeq; +} + +std::list< ::Test::CPtr> +TestIntfI::opCList(const std::list< ::Test::CPtr>& inSeq, + std::list< ::Test::CPtr>& outSeq, + const Ice::Current& current) +{ + outSeq = inSeq; + return inSeq; +} + void TestIntfI::shutdown(const Ice::Current& current) { |