diff options
author | Marc Laukien <marc@zeroc.com> | 2001-09-09 03:52:35 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-09-09 03:52:35 +0000 |
commit | 479148a990da6e9aaaffd1bf94b242168db6f422 (patch) | |
tree | 45bf87df3b36d2d70eede413b5e0188c154825de /cpp/test/Ice/operations/TestI.cpp | |
parent | fixes (diff) | |
download | ice-479148a990da6e9aaaffd1bf94b242168db6f422.tar.bz2 ice-479148a990da6e9aaaffd1bf94b242168db6f422.tar.xz ice-479148a990da6e9aaaffd1bf94b242168db6f422.zip |
fixes
Diffstat (limited to 'cpp/test/Ice/operations/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/operations/TestI.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/test/Ice/operations/TestI.cpp b/cpp/test/Ice/operations/TestI.cpp index d4112f6ed73..65256ee55e0 100644 --- a/cpp/test/Ice/operations/TestI.cpp +++ b/cpp/test/Ice/operations/TestI.cpp @@ -316,10 +316,13 @@ MyDerivedClassI::opWStringMyEnumD(const Test::WStringMyEnumD& p1, const Test::WS return r; } +using namespace std; + Test::MyClassStringD MyDerivedClassI::opMyClassStringD(const Test::MyClassStringD& p1, const Test::MyClassStringD& p2, Test::MyClassStringD& p3) { + Test::MyClassPrx p = Test::MyClassPrx::uncheckedCast(_adapter->objectToProxy(this)); p3 = p1; Test::MyClassStringD r; std::set_union(p1.begin(), p1.end(), p2.begin(), p2.end(), std::inserter(r, r.end())); |