summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/custom/TestI.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-02-07 14:26:23 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-02-07 14:26:23 +0000
commit3d5721d40940b2361d0708b81c390f490e5e06b3 (patch)
tree0c82879298a1b197c85a885332849d4c2072bda8 /cpp/test/Ice/custom/TestI.cpp
parentFixed windows build of custom AMD server (diff)
downloadice-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.cpp18
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)
{