diff options
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/test/Ice/operations/TestAMDI.cpp | 8 | ||||
-rwxr-xr-x | cpp/test/Ice/operations/TestI.cpp | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/cpp/test/Ice/operations/TestAMDI.cpp b/cpp/test/Ice/operations/TestAMDI.cpp index a599c4d0262..52b4bbf3c5e 100755 --- a/cpp/test/Ice/operations/TestAMDI.cpp +++ b/cpp/test/Ice/operations/TestAMDI.cpp @@ -36,28 +36,28 @@ bool MyDerivedClassI::ice_isA(const std::string& id, const Ice::Current& current) const { test(current.mode == Ice::Nonmutating); - return MyDerivedClass::ice_isA(id, current); + return Test::MyDerivedClass::ice_isA(id, current); } void MyDerivedClassI::ice_ping(const Ice::Current& current) const { test(current.mode == Ice::Nonmutating); - MyDerivedClass::ice_ping(current); + Test::MyDerivedClass::ice_ping(current); } std::vector<std::string> MyDerivedClassI::ice_ids(const Ice::Current& current) const { test(current.mode == Ice::Nonmutating); - return MyDerivedClass::ice_ids(current); + return Test::MyDerivedClass::ice_ids(current); } const std::string& MyDerivedClassI::ice_id(const Ice::Current& current) const { test(current.mode == Ice::Nonmutating); - return MyDerivedClass::ice_id(current); + return Test::MyDerivedClass::ice_id(current); } void diff --git a/cpp/test/Ice/operations/TestI.cpp b/cpp/test/Ice/operations/TestI.cpp index 0f2e0b94c39..ca9837ea1b4 100755 --- a/cpp/test/Ice/operations/TestI.cpp +++ b/cpp/test/Ice/operations/TestI.cpp @@ -18,28 +18,28 @@ bool MyDerivedClassI::ice_isA(const std::string& id, const Ice::Current& current) const { test(current.mode == Ice::Nonmutating); - return MyDerivedClass::ice_isA(id, current); + return Test::MyDerivedClass::ice_isA(id, current); } void MyDerivedClassI::ice_ping(const Ice::Current& current) const { test(current.mode == Ice::Nonmutating); - MyDerivedClass::ice_ping(current); + Test::MyDerivedClass::ice_ping(current); } std::vector<std::string> MyDerivedClassI::ice_ids(const Ice::Current& current) const { test(current.mode == Ice::Nonmutating); - return MyDerivedClass::ice_ids(current); + return Test::MyDerivedClass::ice_ids(current); } const std::string& MyDerivedClassI::ice_id(const Ice::Current& current) const { test(current.mode == Ice::Nonmutating); - return MyDerivedClass::ice_id(current); + return Test::MyDerivedClass::ice_id(current); } void |