diff options
author | Michi Henning <michi@zeroc.com> | 2003-08-27 05:05:57 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-08-27 05:05:57 +0000 |
commit | 1000e26d3c7578d04b95ad8a42b61d009bb001cb (patch) | |
tree | 064f0d690eaff464b220625b373cba6af4213396 /cpp/test/Ice/operations/TestAMDI.cpp | |
parent | file XMLParser.h was initially added on branch binary_freeze. (diff) | |
download | ice-1000e26d3c7578d04b95ad8a42b61d009bb001cb.tar.bz2 ice-1000e26d3c7578d04b95ad8a42b61d009bb001cb.tar.xz ice-1000e26d3c7578d04b95ad8a42b61d009bb001cb.zip |
Added per-proxy contexts.
Diffstat (limited to 'cpp/test/Ice/operations/TestAMDI.cpp')
-rw-r--r-- | cpp/test/Ice/operations/TestAMDI.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/test/Ice/operations/TestAMDI.cpp b/cpp/test/Ice/operations/TestAMDI.cpp index 20fd976b205..cc526f023b4 100644 --- a/cpp/test/Ice/operations/TestAMDI.cpp +++ b/cpp/test/Ice/operations/TestAMDI.cpp @@ -358,6 +358,13 @@ MyDerivedClassI::opIntS_async(const ::Test::AMD_MyClass_opIntSPtr& cb, const Tes } void +MyDerivedClassI::opContext_async(const ::Test::AMD_MyClass_opContextPtr& cb, const Ice::Current& c) +{ + Test::StringStringD r = c.ctx; + cb->ice_response(r); +} + +void MyDerivedClassI::opDerived_async(const Test::AMD_MyDerivedClass_opDerivedPtr& cb, const Ice::Current&) { |