diff options
author | Kim van der Riet <kpvdr@apache.org> | 2012-07-16 13:54:11 +0000 |
---|---|---|
committer | Kim van der Riet <kpvdr@apache.org> | 2012-07-16 13:54:11 +0000 |
commit | a804510d81ade0594a75b5c9b8765cafcc233245 (patch) | |
tree | 8c6be643564b6d8c88619d17de7150c98a314781 /cpp/src/qpid/broker/EventHandle.cpp | |
parent | 1ab07197127e990da2c765ea0ffa5fd8ca47b7b6 (diff) | |
download | qpid-python-a804510d81ade0594a75b5c9b8765cafcc233245.tar.gz |
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
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); } |