diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-06-09 22:32:22 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-06-09 22:33:32 -0400 |
commit | 69e99559db0bd9cfa076b65360af21c0ab417a12 (patch) | |
tree | 8961f24ff3e5dbaefcbe65c9905f460ce8eb0f3c /cpp/test/Ice/custom/WstringAMDI.cpp | |
parent | ICE-7166 - Change php library name to IcePHP.so on OS X (diff) | |
download | ice-69e99559db0bd9cfa076b65360af21c0ab417a12.tar.bz2 ice-69e99559db0bd9cfa076b65360af21c0ab417a12.tar.xz ice-69e99559db0bd9cfa076b65360af21c0ab417a12.zip |
Renamed C++11 AMI/AMD suffix: _async to Async
Diffstat (limited to 'cpp/test/Ice/custom/WstringAMDI.cpp')
-rw-r--r-- | cpp/test/Ice/custom/WstringAMDI.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/cpp/test/Ice/custom/WstringAMDI.cpp b/cpp/test/Ice/custom/WstringAMDI.cpp index a63b8f1027b..08becc717e8 100644 --- a/cpp/test/Ice/custom/WstringAMDI.cpp +++ b/cpp/test/Ice/custom/WstringAMDI.cpp @@ -12,50 +12,50 @@ #ifdef ICE_CPP11_MAPPING void -Test1::WstringClassI::opString_async(std::wstring in, - std::function<void (const std::wstring&, const std::wstring&)> response, - std::function<void (std::exception_ptr)>, const Ice::Current&) +Test1::WstringClassI::opStringAsync(std::wstring in, + std::function<void (const std::wstring&, const std::wstring&)> response, + std::function<void (std::exception_ptr)>, const Ice::Current&) { response(in, in); } void -Test1::WstringClassI::opStruct_async(Test1::WstringStruct in, - std::function<void (const Test1::WstringStruct&, const Test1::WstringStruct&)> response, - std::function<void (std::exception_ptr)>, const Ice::Current&) +Test1::WstringClassI::opStructAsync(Test1::WstringStruct in, + std::function<void (const Test1::WstringStruct&, const Test1::WstringStruct&)> response, + std::function<void (std::exception_ptr)>, const Ice::Current&) { response(in, in); } void -Test1::WstringClassI::throwExcept_async(std::wstring in, - std::function<void ()>, - std::function<void (std::exception_ptr)> error, const Ice::Current&) +Test1::WstringClassI::throwExceptAsync(std::wstring in, + std::function<void ()>, + std::function<void (std::exception_ptr)> error, const Ice::Current&) { Test1::WstringException ex(in); error(std::make_exception_ptr(ex)); } void -Test2::WstringClassI::opString_async(std::wstring in, - std::function<void (const std::wstring&, const std::wstring&)> response, - std::function<void (std::exception_ptr)>, const Ice::Current&) +Test2::WstringClassI::opStringAsync(std::wstring in, + std::function<void (const std::wstring&, const std::wstring&)> response, + std::function<void (std::exception_ptr)>, const Ice::Current&) { response(in, in); } void -Test2::WstringClassI::opStruct_async(Test2::WstringStruct in, - std::function<void (const Test2::WstringStruct&, const Test2::WstringStruct&)> response, - std::function<void (std::exception_ptr)>, const Ice::Current&) +Test2::WstringClassI::opStructAsync(Test2::WstringStruct in, + std::function<void (const Test2::WstringStruct&, const Test2::WstringStruct&)> response, + std::function<void (std::exception_ptr)>, const Ice::Current&) { response(in, in); } void -Test2::WstringClassI::throwExcept_async(std::wstring in, - std::function<void ()>, - std::function<void (std::exception_ptr)> error, const Ice::Current&) +Test2::WstringClassI::throwExceptAsync(std::wstring in, + std::function<void ()>, + std::function<void (std::exception_ptr)> error, const Ice::Current&) { Test2::WstringException ex(in); |