diff options
| author | Alan Conway <aconway@apache.org> | 2007-04-03 21:18:17 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2007-04-03 21:18:17 +0000 |
| commit | 7043d22d1943263840eb6cefdb7c6449eeab5a14 (patch) | |
| tree | 63b97e5d150783c5e21e937a31ecf32eb15f4094 /qpid/cpp/src/client/BasicMessageChannel.h | |
| parent | cb99865516ce0a55698b66031599956ae97e982a (diff) | |
| download | qpid-python-7043d22d1943263840eb6cefdb7c6449eeab5a14.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@525282 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/client/BasicMessageChannel.h')
| -rw-r--r-- | qpid/cpp/src/client/BasicMessageChannel.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/qpid/cpp/src/client/BasicMessageChannel.h b/qpid/cpp/src/client/BasicMessageChannel.h index aaedfd6bf1..13e1cf1e00 100644 --- a/qpid/cpp/src/client/BasicMessageChannel.h +++ b/qpid/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 |
