summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/ami/TestI.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-05-22 11:17:24 +0200
committerJose <jose@zeroc.com>2017-05-22 11:17:24 +0200
commitaf8386af5b3a88730db7deceeda0fa0698be8c48 (patch)
tree3604c4a196c09c5e5a10c43f590a090d3cfccab7 /cpp/test/Ice/ami/TestI.cpp
parentAdded check for Android SDK installation (diff)
downloadice-af8386af5b3a88730db7deceeda0fa0698be8c48.tar.bz2
ice-af8386af5b3a88730db7deceeda0fa0698be8c48.tar.xz
ice-af8386af5b3a88730db7deceeda0fa0698be8c48.zip
Result struct test
Diffstat (limited to 'cpp/test/Ice/ami/TestI.cpp')
-rw-r--r--cpp/test/Ice/ami/TestI.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/test/Ice/ami/TestI.cpp b/cpp/test/Ice/ami/TestI.cpp
index c9d2869e80a..c9eddb8283d 100644
--- a/cpp/test/Ice/ami/TestI.cpp
+++ b/cpp/test/Ice/ami/TestI.cpp
@@ -194,3 +194,10 @@ TestIntfControllerI::resumeAdapter(const Ice::Current&)
TestIntfControllerI::TestIntfControllerI(const Ice::ObjectAdapterPtr& adapter) : _adapter(adapter)
{
}
+
+Ice::Int
+TestIntfII::op(Ice::Int i, Ice::Int& j, const Ice::Current&)
+{
+ j = i;
+ return i;
+}