diff options
author | Alan Conway <aconway@apache.org> | 2007-10-29 18:35:29 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-10-29 18:35:29 +0000 |
commit | 505c43651b302ecf773bff1fcf3d45f5a1aef682 (patch) | |
tree | d1548a878fd1186f5a4d317ea624336760af8e98 /cpp/src/qpid/client/Dispatcher.cpp | |
parent | 0fb42a897731efaea3dcb8c4238707f38c0d4d3e (diff) | |
download | qpid-python-505c43651b302ecf773bff1fcf3d45f5a1aef682.tar.gz |
Rename client::Session as client::Session_0_10
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@589794 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/Dispatcher.cpp')
-rw-r--r-- | cpp/src/qpid/client/Dispatcher.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/qpid/client/Dispatcher.cpp b/cpp/src/qpid/client/Dispatcher.cpp index 5c3c85343e..ea6fcfb463 100644 --- a/cpp/src/qpid/client/Dispatcher.cpp +++ b/cpp/src/qpid/client/Dispatcher.cpp @@ -20,7 +20,7 @@ */ #include "Dispatcher.h" -#include "qpid/client/Session.h" +#include "qpid/client/Session_0_10.h" #include "qpid/framing/FrameSet.h" #include "qpid/framing/MessageTransferBody.h" #include "qpid/log/Statement.h" @@ -36,7 +36,7 @@ using qpid::sys::Thread; namespace qpid { namespace client { - Subscriber::Subscriber(Session& s, MessageListener* l, bool a, uint f) : session(s), listener(l), autoAck(a), ackBatchSize(f), count(0) {} + Subscriber::Subscriber(Session_0_10& s, MessageListener* l, bool a, uint f) : session(s), listener(l), autoAck(a), ackBatchSize(f), count(0) {} void Subscriber::received(Message& msg) { @@ -51,7 +51,7 @@ void Subscriber::received(Message& msg) } - Dispatcher::Dispatcher(Session& s, const std::string& q) : session(s), queue(q), running(false), stopped(false) + Dispatcher::Dispatcher(Session_0_10& s, const std::string& q) : session(s), queue(q), running(false), stopped(false) { } |