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