summaryrefslogtreecommitdiff
path: root/cpp/src/client/BasicMessageChannel.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-04-03 21:18:17 +0000
committerAlan Conway <aconway@apache.org>2007-04-03 21:18:17 +0000
commit0184b49a6c2f0e3174b8b5ac5e33342123737a14 (patch)
tree4820f184c930705d941eeadce20e183e65642bad /cpp/src/client/BasicMessageChannel.h
parent80522c12572f20aca4b68223a5f263721cb99a16 (diff)
downloadqpid-python-0184b49a6c2f0e3174b8b5ac5e33342123737a14.tar.gz
Moved BasicMessage::WaitableDestination to IncomingMessage::WaitableDestination so it can be shared by Basic and Message implementations.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@525282 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/client/BasicMessageChannel.h')
-rw-r--r--cpp/src/client/BasicMessageChannel.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/client/BasicMessageChannel.h b/cpp/src/client/BasicMessageChannel.h
index aaedfd6bf1..13e1cf1e00 100644
--- a/cpp/src/client/BasicMessageChannel.h
+++ b/cpp/src/client/BasicMessageChannel.h
@@ -63,7 +63,6 @@ class BasicMessageChannel : public MessageChannel
private:
- class WaitableDestination;
struct Consumer{
MessageListener* listener;
AckMode ackMode;
@@ -80,8 +79,8 @@ class BasicMessageChannel : public MessageChannel
uint64_t incoming_size;
ConsumerMap consumers ;
ReturnedMessageHandler* returnsHandler;
- boost::scoped_ptr<WaitableDestination> destGet;
- boost::scoped_ptr<WaitableDestination> destDispatch;
+ IncomingMessage::WaitableDestination destGet;
+ IncomingMessage::WaitableDestination destDispatch;
};
}} // namespace qpid::client