summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/client/Channel.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
commit505c43651b302ecf773bff1fcf3d45f5a1aef682 (patch)
treed1548a878fd1186f5a4d317ea624336760af8e98 /cpp/src/qpid/client/Channel.cpp
parent0fb42a897731efaea3dcb8c4238707f38c0d4d3e (diff)
downloadqpid-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/Channel.cpp')
-rw-r--r--cpp/src/qpid/client/Channel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/qpid/client/Channel.cpp b/cpp/src/qpid/client/Channel.cpp
index 16e0428a56..8b7b7e1118 100644
--- a/cpp/src/qpid/client/Channel.cpp
+++ b/cpp/src/qpid/client/Channel.cpp
@@ -49,9 +49,9 @@ const std::string empty;
class ScopedSync
{
- Session& session;
+ Session_0_10& session;
public:
- ScopedSync(Session& s, bool enabled = true) : session(s) { session.setSynchronous(enabled); }
+ ScopedSync(Session_0_10& s, bool enabled = true) : session(s) { session.setSynchronous(enabled); }
~ScopedSync() { session.setSynchronous(false); }
};
@@ -66,7 +66,7 @@ Channel::~Channel()
join();
}
-void Channel::open(const Session& s)
+void Channel::open(const Session_0_10& s)
{
Mutex::ScopedLock l(stopLock);
if (isOpen())