diff options
Diffstat (limited to 'cpp/src/qpid/broker/AsyncResultHandle.cpp')
-rw-r--r-- | cpp/src/qpid/broker/AsyncResultHandle.cpp | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/cpp/src/qpid/broker/AsyncResultHandle.cpp b/cpp/src/qpid/broker/AsyncResultHandle.cpp index d2fa9ae3e0..1d42b6096f 100644 --- a/cpp/src/qpid/broker/AsyncResultHandle.cpp +++ b/cpp/src/qpid/broker/AsyncResultHandle.cpp @@ -32,49 +32,43 @@ namespace broker { typedef PrivateImplRef<AsyncResultHandle> PrivateImpl; AsyncResultHandle::AsyncResultHandle(AsyncResultHandleImpl* p) : - Handle<AsyncResultHandleImpl>() + Handle<AsyncResultHandleImpl>() { PrivateImpl::ctor(*this, p); } AsyncResultHandle::AsyncResultHandle(const AsyncResultHandle& r) : - Handle<AsyncResultHandleImpl>() + Handle<AsyncResultHandleImpl>() { PrivateImpl::copy(*this, r); } -AsyncResultHandle::~AsyncResultHandle() -{ +AsyncResultHandle::~AsyncResultHandle() { PrivateImpl::dtor(*this); } AsyncResultHandle& -AsyncResultHandle::operator=(const AsyncResultHandle& r) -{ +AsyncResultHandle::operator=(const AsyncResultHandle& r) { return PrivateImpl::assign(*this, r); } int -AsyncResultHandle::getErrNo() const -{ +AsyncResultHandle::getErrNo() const { return impl->getErrNo(); } std::string -AsyncResultHandle::getErrMsg() const -{ +AsyncResultHandle::getErrMsg() const { return impl->getErrMsg(); } boost::shared_ptr<BrokerAsyncContext> -AsyncResultHandle::getBrokerAsyncContext() const -{ +AsyncResultHandle::getBrokerAsyncContext() const { return impl->getBrokerAsyncContext(); } void -AsyncResultHandle::invokeAsyncResultCallback() const -{ +AsyncResultHandle::invokeAsyncResultCallback() const { impl->getBrokerAsyncContext()->invokeCallback(this); } |