From 5f3ff3bcc03691d0646cd75d8408be284d8adee6 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Tue, 12 Nov 2013 13:42:36 +0000 Subject: QPID-5301: support autodeleted exchanges git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1541058 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/xml/XmlExchangePlugin.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cpp/src/qpid/xml/XmlExchangePlugin.cpp') diff --git a/cpp/src/qpid/xml/XmlExchangePlugin.cpp b/cpp/src/qpid/xml/XmlExchangePlugin.cpp index 742b878e86..02f0110faf 100644 --- a/cpp/src/qpid/xml/XmlExchangePlugin.cpp +++ b/cpp/src/qpid/xml/XmlExchangePlugin.cpp @@ -34,11 +34,12 @@ using namespace std; class Broker; Exchange::shared_ptr create(const std::string& name, bool durable, - const framing::FieldTable& args, + bool autodelete, + const framing::FieldTable& args, management::Manageable* parent, Broker* broker) { - Exchange::shared_ptr e(new XmlExchange(name, durable, args, parent, broker)); + Exchange::shared_ptr e(new XmlExchange(name, durable, autodelete, args, parent, broker)); return e; } -- cgit v1.2.1