summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/operations/TestI.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2004-05-10 02:15:57 +0000
committerMichi Henning <michi@zeroc.com>2004-05-10 02:15:57 +0000
commita6a7f49b10372b9e4adf2ac2431b361c5638d156 (patch)
tree1b4e44d9ba7a0209a9faa35b35ce29bb8d4d0e4e /cpp/test/Ice/operations/TestI.cpp
parentFixed VC6 build (diff)
downloadice-a6a7f49b10372b9e4adf2ac2431b361c5638d156.tar.bz2
ice-a6a7f49b10372b9e4adf2ac2431b361c5638d156.tar.xz
ice-a6a7f49b10372b9e4adf2ac2431b361c5638d156.zip
Merged changes from michi_pre_e3 branch
Diffstat (limited to 'cpp/test/Ice/operations/TestI.cpp')
-rw-r--r--cpp/test/Ice/operations/TestI.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/cpp/test/Ice/operations/TestI.cpp b/cpp/test/Ice/operations/TestI.cpp
index a2e278052bf..3d8e931ee7b 100644
--- a/cpp/test/Ice/operations/TestI.cpp
+++ b/cpp/test/Ice/operations/TestI.cpp
@@ -267,6 +267,20 @@ MyDerivedClassI::opStringSS(const Test::StringSS& p1,
return r;
}
+Test::StringSSS
+MyDerivedClassI::opStringSSS(const Test::StringSSS& p1,
+ const Test::StringSSS& p2,
+ Test::StringSSS& p3,
+ const ::Ice::Current&)
+{
+ p3 = p1;
+ std::copy(p2.begin(), p2.end(), std::back_inserter(p3));
+ Test::StringSSS r;
+ r.resize(p2.size());
+ std::reverse_copy(p2.begin(), p2.end(), r.begin());
+ return r;
+}
+
Test::ByteBoolD
MyDerivedClassI::opByteBoolD(const Test::ByteBoolD& p1,
const Test::ByteBoolD& p2,