diff options
Diffstat (limited to 'cpp/test/Ice/operations/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/operations/TestI.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cpp/test/Ice/operations/TestI.cpp b/cpp/test/Ice/operations/TestI.cpp index 4e17266f8a7..5f5457396fc 100644 --- a/cpp/test/Ice/operations/TestI.cpp +++ b/cpp/test/Ice/operations/TestI.cpp @@ -874,6 +874,16 @@ MyDerivedClassI::opMDict2(ICE_IN(Test::StringStringD) p1, const Ice::Current& cu return OpMDict2MarshaledResult(p1, p1, current); } +void +BI::opIntf(const Ice::Current&) +{ +} + +void +BI::opB(const Ice::Current&) +{ +} + #else Test::Structure @@ -917,4 +927,13 @@ MyDerivedClassI::opMDict2(ICE_IN(Test::StringStringD) p1, Test::StringStringD& p return p1; } +void +BI::opIntf(const Ice::Current&) +{ +} + +void +BI::opB(const Ice::Current&) +{ +} #endif |