summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/xml/XmlExchangePlugin.cpp
diff options
context:
space:
mode:
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;
}