diff options
| author | Gordon Sim <gsim@apache.org> | 2013-03-23 17:59:50 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2013-03-23 17:59:50 +0000 |
| commit | cfa98a776511eb4a713c7e87796bc3fcfaafbe42 (patch) | |
| tree | 95bbf3dc2b114627fa5d03d394fcf70cd37da6e4 /cpp/src/qpid/messaging/Sender.cpp | |
| parent | 964edfa59bd065b1db97ea16932ef2553ee8ac04 (diff) | |
| download | qpid-python-cfa98a776511eb4a713c7e87796bc3fcfaafbe42.tar.gz | |
QPID-4586: fixes for dynamic sources/targets and on demand creation of nodes
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1460198 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/messaging/Sender.cpp')
| -rw-r--r-- | cpp/src/qpid/messaging/Sender.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/messaging/Sender.cpp b/cpp/src/qpid/messaging/Sender.cpp index 53dbb69777..a60de3d606 100644 --- a/cpp/src/qpid/messaging/Sender.cpp +++ b/cpp/src/qpid/messaging/Sender.cpp @@ -19,6 +19,7 @@ * */ #include "qpid/messaging/Sender.h" +#include "qpid/messaging/Address.h" #include "qpid/messaging/Message.h" #include "qpid/messaging/SenderImpl.h" #include "qpid/messaging/Session.h" @@ -40,5 +41,5 @@ uint32_t Sender::getUnsettled() { return impl->getUnsettled(); } uint32_t Sender::getAvailable() { return getCapacity() - getUnsettled(); } const std::string& Sender::getName() const { return impl->getName(); } Session Sender::getSession() const { return impl->getSession(); } - +Address Sender::getAddress() const { return impl->getAddress(); } }} // namespace qpid::messaging |
