summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/ClientSessionTest.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/tests/ClientSessionTest.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/tests/ClientSessionTest.cpp')
-rw-r--r--qpid/cpp/src/tests/ClientSessionTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/tests/ClientSessionTest.cpp b/qpid/cpp/src/tests/ClientSessionTest.cpp
index db2cd62b0a..149cbd8e3d 100644
--- a/qpid/cpp/src/tests/ClientSessionTest.cpp
+++ b/qpid/cpp/src/tests/ClientSessionTest.cpp
@@ -21,7 +21,7 @@
#include "qpid_test_plugin.h"
#include "InProcessBroker.h"
#include "qpid/client/Dispatcher.h"
-#include "qpid/client/Session.h"
+#include "qpid/client/Session_0_10.h"
#include "qpid/framing/TransferContent.h"
#include "qpid/framing/reply_exceptions.h"
@@ -42,7 +42,7 @@ struct DummyListener : public MessageListener
uint count;
Dispatcher dispatcher;
- DummyListener(Session& session, const std::string& _name, uint _expected) : name(_name), expected(_expected), count(0),
+ DummyListener(Session_0_10& session, const std::string& _name, uint _expected) : name(_name), expected(_expected), count(0),
dispatcher(session) {}
void listen()
@@ -74,7 +74,7 @@ class ClientSessionTest : public CppUnit::TestCase
CPPUNIT_TEST_SUITE_END();
shared_ptr<broker::Broker> broker;
- Session session;
+ Session_0_10 session;
// Defer construction & thread creation to setUp
boost::optional<InProcessConnection> c;
boost::optional<InProcessConnection> c2;