From a804510d81ade0594a75b5c9b8765cafcc233245 Mon Sep 17 00:00:00 2001 From: Kim van der Riet Date: Mon, 16 Jul 2012 13:54:11 +0000 Subject: QPID-3858: Refactor to tidy up several class design issues git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/asyncstore@1362039 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/broker/AsyncResultHandle.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'cpp/src/qpid/broker/AsyncResultHandle.cpp') 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 PrivateImpl; +typedef PrivateImplRef PrivateImpl; AsyncResultHandle::AsyncResultHandle(AsyncResultHandleImpl* p) : - qpid::messaging::Handle() + Handle() { PrivateImpl::ctor(*this, p); } AsyncResultHandle::AsyncResultHandle(const AsyncResultHandle& r) : - qpid::messaging::Handle() + Handle() { PrivateImpl::copy(*this, r); } -- cgit v1.2.1