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 | |
| 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')
| -rw-r--r-- | cpp/src/qpid/client/amqp0_10/ConnectionImpl.cpp | 4 | ||||
| -rw-r--r-- | cpp/src/qpid/client/amqp0_10/SessionImpl.cpp | 4 |
2 files changed, 4 insertions, 4 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) ); } diff --git a/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp b/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp index d9fd3a5da1..f12d383206 100644 --- a/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp +++ b/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp @@ -24,7 +24,7 @@ #include "qpid/client/amqp0_10/SenderImpl.h" #include "qpid/client/amqp0_10/MessageSource.h" #include "qpid/client/amqp0_10/MessageSink.h" -#include "qpid/client/PrivateImplRef.h" +#include "qpid/messaging/PrivateImplRef.h" #include "qpid/Exception.h" #include "qpid/log/Statement.h" #include "qpid/messaging/Address.h" @@ -114,7 +114,7 @@ void SessionImpl::close() template <class T, class S> boost::intrusive_ptr<S> getImplPtr(T& t) { - return boost::dynamic_pointer_cast<S>(qpid::client::PrivateImplRef<T>::get(t)); + return boost::dynamic_pointer_cast<S>(qpid::messaging::PrivateImplRef<T>::get(t)); } template <class T> void getFreeKey(std::string& key, T& map) |
