diff options
author | Alan Conway <aconway@apache.org> | 2007-06-06 20:26:52 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-06-06 20:26:52 +0000 |
commit | fca1397c9ee37e92b57fd419186182cbec567435 (patch) | |
tree | 1ba9d0bf25f5aee03e9ba8c4dc7d4d6157cd6b39 /cpp/src/qpid/client/ClientChannel.h | |
parent | 70a3cdf33b3e38ee26ee2840a55f83ebd26589b4 (diff) | |
download | qpid-python-fca1397c9ee37e92b57fd419186182cbec567435.tar.gz |
Made FieldTable argument of client::Channel::bind() optional.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@544938 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/ClientChannel.h')
-rw-r--r-- | cpp/src/qpid/client/ClientChannel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/ClientChannel.h b/cpp/src/qpid/client/ClientChannel.h index 7f3074ea1b..4faf778d28 100644 --- a/cpp/src/qpid/client/ClientChannel.h +++ b/cpp/src/qpid/client/ClientChannel.h @@ -199,7 +199,8 @@ class Channel : public framing::ChannelAdapter * is received from the broker */ void bind(const Exchange& exchange, const Queue& queue, - const std::string& key, const framing::FieldTable& args, + const std::string& key, + const framing::FieldTable& args=framing::FieldTable(), bool synch = true); /** |