diff options
Diffstat (limited to 'cpp/src/qpid/broker/TxnHandle.cpp')
-rw-r--r-- | cpp/src/qpid/broker/TxnHandle.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/qpid/broker/TxnHandle.cpp b/cpp/src/qpid/broker/TxnHandle.cpp index 07d46b4235..58cedd586e 100644 --- a/cpp/src/qpid/broker/TxnHandle.cpp +++ b/cpp/src/qpid/broker/TxnHandle.cpp @@ -23,23 +23,23 @@ #include "TxnHandle.h" -#include "qpid/messaging/PrivateImplRef.h" +#include "PrivateImplRef.h" + +#include "qpid/asyncStore/TxnHandleImpl.h" namespace qpid { namespace broker { -typedef qpid::messaging::PrivateImplRef<TxnHandle> PrivateImpl; +typedef PrivateImplRef<TxnHandle> PrivateImpl; TxnHandle::TxnHandle(qpid::asyncStore::TxnHandleImpl* p) : - qpid::messaging::Handle<qpid::asyncStore::TxnHandleImpl>(), - IdHandle() + Handle<qpid::asyncStore::TxnHandleImpl>() { PrivateImpl::ctor(*this, p); } TxnHandle::TxnHandle(const TxnHandle& r) : - qpid::messaging::Handle<qpid::asyncStore::TxnHandleImpl>(), - IdHandle() + Handle<qpid::asyncStore::TxnHandleImpl>() { PrivateImpl::copy(*this, r); } |