summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpid/client/Dispatcher.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-10-29 18:35:29 +0000
committerAlan Conway <aconway@apache.org>2007-10-29 18:35:29 +0000
commit36b42cd7921cae46f99cc6bf1c83f2ddacf21395 (patch)
treec4b655693784b6d1390d9ba67c03ae9e18c77277 /qpid/cpp/src/qpid/client/Dispatcher.cpp
parentf4f861fc5ea9847a12d9644ff1309b12954a66a6 (diff)
downloadqpid-python-36b42cd7921cae46f99cc6bf1c83f2ddacf21395.tar.gz
Rename client::Session as client::Session_0_10
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@589794 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qpid/client/Dispatcher.cpp')
-rw-r--r--qpid/cpp/src/qpid/client/Dispatcher.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/qpid/client/Dispatcher.cpp b/qpid/cpp/src/qpid/client/Dispatcher.cpp
index 5c3c85343e..ea6fcfb463 100644
--- a/qpid/cpp/src/qpid/client/Dispatcher.cpp
+++ b/qpid/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)
{
}