summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/xml/XmlExchangePlugin.cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2013-11-12 13:42:36 +0000
committerGordon Sim <gsim@apache.org>2013-11-12 13:42:36 +0000
commit5f3ff3bcc03691d0646cd75d8408be284d8adee6 (patch)
treed475768bd96b23ac17771b1b9d8617b2790d83e5 /cpp/src/qpid/xml/XmlExchangePlugin.cpp
parent3741945c58f6b835003bbdb978efa34ff6a681b5 (diff)
downloadqpid-python-5f3ff3bcc03691d0646cd75d8408be284d8adee6.tar.gz
QPID-5301: support autodeleted exchanges
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1541058 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/xml/XmlExchangePlugin.cpp')
-rw-r--r--cpp/src/qpid/xml/XmlExchangePlugin.cpp5
1 files changed, 3 insertions, 2 deletions
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;
}