diff options
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) { |