diff options
author | Michi Henning <michi@zeroc.com> | 2007-05-08 05:02:09 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2007-05-08 05:02:09 +0000 |
commit | c4a1d7ad39bf68c75993742a0373053a8c495317 (patch) | |
tree | 53baaf75b547020857c86aacb5693da9bb11b3a7 /cpp/test/Ice/proxy/TestI.cpp | |
parent | Got rid of needless #include <iostream>. (diff) | |
download | ice-c4a1d7ad39bf68c75993742a0373053a8c495317.tar.bz2 ice-c4a1d7ad39bf68c75993742a0373053a8c495317.tar.xz ice-c4a1d7ad39bf68c75993742a0373053a8c495317.zip |
Added more tests for opaque endpoints.
Diffstat (limited to 'cpp/test/Ice/proxy/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/proxy/TestI.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/test/Ice/proxy/TestI.cpp b/cpp/test/Ice/proxy/TestI.cpp index 8be4c334520..684a4012d8a 100644 --- a/cpp/test/Ice/proxy/TestI.cpp +++ b/cpp/test/Ice/proxy/TestI.cpp @@ -15,6 +15,12 @@ MyDerivedClassI::MyDerivedClassI() { } +Ice::ObjectPrx +MyDerivedClassI::echo(const Ice::ObjectPrx& obj, const Ice::Current&) +{ + return obj; +} + void MyDerivedClassI::shutdown(const Ice::Current& c) { |