diff options
author | Alan Conway <aconway@apache.org> | 2010-03-16 18:01:38 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-03-16 18:01:38 +0000 |
commit | db9e84cd3de1e56ae81e0ca6110c164435e7ca5a (patch) | |
tree | 8f75a1ffb2fd6bdf3af3a0d7bf337e54d131520a /cpp/src/qpid/client/amqp0_10/ConnectionImpl.cpp | |
parent | 24952dc43e52362d5e16a5dbd795fae7d07a12d0 (diff) | |
download | qpid-python-db9e84cd3de1e56ae81e0ca6110c164435e7ca5a.tar.gz |
Removed dependencies in qpid/messaging on qpid/client.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@923908 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/amqp0_10/ConnectionImpl.cpp')
-rw-r--r-- | cpp/src/qpid/client/amqp0_10/ConnectionImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/client/amqp0_10/ConnectionImpl.cpp b/cpp/src/qpid/client/amqp0_10/ConnectionImpl.cpp index 9c1c4e0735..ce4e1ecc2a 100644 --- a/cpp/src/qpid/client/amqp0_10/ConnectionImpl.cpp +++ b/cpp/src/qpid/client/amqp0_10/ConnectionImpl.cpp @@ -22,7 +22,7 @@ #include "SessionImpl.h" #include "SimpleUrlParser.h" #include "qpid/messaging/Session.h" -#include "qpid/client/PrivateImplRef.h" +#include "qpid/messaging/PrivateImplRef.h" #include "qpid/framing/Uuid.h" #include "qpid/log/Statement.h" #include <boost/intrusive_ptr.hpp> @@ -150,7 +150,7 @@ void ConnectionImpl::close() boost::intrusive_ptr<SessionImpl> getImplPtr(qpid::messaging::Session& session) { return boost::dynamic_pointer_cast<SessionImpl>( - qpid::client::PrivateImplRef<qpid::messaging::Session>::get(session) + qpid::messaging::PrivateImplRef<qpid::messaging::Session>::get(session) ); } |