diff options
Diffstat (limited to 'cpp/src/qpid/broker/AsyncResultHandle.cpp')
-rw-r--r-- | cpp/src/qpid/broker/AsyncResultHandle.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cpp/src/qpid/broker/AsyncResultHandle.cpp b/cpp/src/qpid/broker/AsyncResultHandle.cpp index cdd2231977..d2fa9ae3e0 100644 --- a/cpp/src/qpid/broker/AsyncResultHandle.cpp +++ b/cpp/src/qpid/broker/AsyncResultHandle.cpp @@ -23,21 +23,22 @@ #include "AsyncResultHandle.h" -#include "qpid/messaging/PrivateImplRef.h" +#include "AsyncResultHandleImpl.h" +#include "PrivateImplRef.h" namespace qpid { namespace broker { -typedef qpid::messaging::PrivateImplRef<AsyncResultHandle> PrivateImpl; +typedef PrivateImplRef<AsyncResultHandle> PrivateImpl; AsyncResultHandle::AsyncResultHandle(AsyncResultHandleImpl* p) : - qpid::messaging::Handle<AsyncResultHandleImpl>() + Handle<AsyncResultHandleImpl>() { PrivateImpl::ctor(*this, p); } AsyncResultHandle::AsyncResultHandle(const AsyncResultHandle& r) : - qpid::messaging::Handle<AsyncResultHandleImpl>() + Handle<AsyncResultHandleImpl>() { PrivateImpl::copy(*this, r); } |