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/include/Ice/Object.h | |
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/include/Ice/Object.h')
-rw-r--r-- | cpp/include/Ice/Object.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cpp/include/Ice/Object.h b/cpp/include/Ice/Object.h index 150b8be12ff..a3b11f6ebce 100644 --- a/cpp/include/Ice/Object.h +++ b/cpp/include/Ice/Object.h @@ -183,10 +183,10 @@ class ICE_API BlobjectAsync : public virtual Object public: #ifdef ICE_CPP11_MAPPING - virtual void ice_invoke_async(std::vector<Byte>, - std::function<void (bool, std::vector<Byte>)>, - std::function<void (std::exception_ptr)>, - const Current&) = 0; + virtual void ice_invokeAsync(std::vector<Byte>, + std::function<void (bool, std::vector<Byte>)>, + std::function<void (std::exception_ptr)>, + const Current&) = 0; #else virtual void ice_invoke_async(const AMD_Object_ice_invokePtr&, const std::vector<Byte>&, const Current&) = 0; #endif @@ -198,10 +198,10 @@ class ICE_API BlobjectArrayAsync : public virtual Object public: #ifdef ICE_CPP11_MAPPING - virtual void ice_invoke_async(std::pair<const Byte*, const Byte*>, - std::function<void (bool, std::pair<const Byte*, const Byte*>)>, - std::function<void (std::exception_ptr)>, - const Current&) = 0; + virtual void ice_invokeAsync(std::pair<const Byte*, const Byte*>, + std::function<void (bool, std::pair<const Byte*, const Byte*>)>, + std::function<void (std::exception_ptr)>, + const Current&) = 0; #else virtual void ice_invoke_async(const AMD_Object_ice_invokePtr&, const std::pair<const Byte*, const Byte*>&, const Current&) = 0; |