diff options
| author | Ted Ross <tross@apache.org> | 2009-05-20 15:17:21 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2009-05-20 15:17:21 +0000 |
| commit | a2c01a4f2dc35aab8b905ad7efb5c62305e6d48b (patch) | |
| tree | 141debb969aa98cc379bc6a78c41a9bf09ca6e71 /cpp/src/qpid/xml/XmlExchange.h | |
| parent | 285ca60cf814ce4b96813e929ced910d53097aef (diff) | |
| download | qpid-python-a2c01a4f2dc35aab8b905ad7efb5c62305e6d48b.tar.gz | |
Fixed a regression affecting plugin-exchanges.
Plugin exchanges (i.e. the XML exchange) do not get the broker pointer and
therefore can not register themselves with the management agent.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@776729 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/xml/XmlExchange.h')
| -rw-r--r-- | cpp/src/qpid/xml/XmlExchange.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/qpid/xml/XmlExchange.h b/cpp/src/qpid/xml/XmlExchange.h index 7bec480bde..38cb7699b6 100644 --- a/cpp/src/qpid/xml/XmlExchange.h +++ b/cpp/src/qpid/xml/XmlExchange.h @@ -37,6 +37,7 @@ namespace qpid { namespace broker { +class Broker; class XmlExchange : public virtual Exchange { typedef boost::shared_ptr<XQQuery> Query; @@ -64,9 +65,9 @@ class XmlExchange : public virtual Exchange { public: static const std::string typeName; - XmlExchange(const std::string& name, management::Manageable* parent = 0); + XmlExchange(const std::string& name, management::Manageable* parent = 0, Broker* broker = 0); XmlExchange(const string& _name, bool _durable, - const qpid::framing::FieldTable& _args, management::Manageable* parent = 0); + const qpid::framing::FieldTable& _args, management::Manageable* parent = 0, Broker* broker = 0); virtual std::string getType() const { return typeName; } |
