diff options
| author | Ted Ross <tross@apache.org> | 2009-05-11 14:16:52 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2009-05-11 14:16:52 +0000 |
| commit | a1b440e5393206ec5833e2d6c2617c2aca71701f (patch) | |
| tree | edbe7aad7a01122986380860c4cedd95086a282a /cpp/src/qpid/management/ManagementExchange.cpp | |
| parent | ec0e348d1d14679f72ce704555dd2605880bddfa (diff) | |
| download | qpid-python-a1b440e5393206ec5833e2d6c2617c2aca71701f.tar.gz | |
QPID-1843 - Cleaned up the interface to the broker's internal management agent.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@773570 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/management/ManagementExchange.cpp')
| -rw-r--r-- | cpp/src/qpid/management/ManagementExchange.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/qpid/management/ManagementExchange.cpp b/cpp/src/qpid/management/ManagementExchange.cpp index 4dcafbfcdd..0793b2d18c 100644 --- a/cpp/src/qpid/management/ManagementExchange.cpp +++ b/cpp/src/qpid/management/ManagementExchange.cpp @@ -27,14 +27,14 @@ using namespace qpid::broker; using namespace qpid::framing; using namespace qpid::sys; -ManagementExchange::ManagementExchange (const string& _name, Manageable* _parent) : - Exchange (_name, _parent), TopicExchange(_name, _parent) {} +ManagementExchange::ManagementExchange (const string& _name, Manageable* _parent, Broker* b) : + Exchange (_name, _parent, b), TopicExchange(_name, _parent, b) {} ManagementExchange::ManagementExchange (const std::string& _name, bool _durable, const FieldTable& _args, - Manageable* _parent) : - Exchange (_name, _durable, _args, _parent), - TopicExchange(_name, _durable, _args, _parent) {} + Manageable* _parent, Broker* b) : + Exchange (_name, _durable, _args, _parent, b), + TopicExchange(_name, _durable, _args, _parent, b) {} void ManagementExchange::route (Deliverable& msg, const string& routingKey, @@ -60,7 +60,7 @@ bool ManagementExchange::bind (Queue::shared_ptr queue, return TopicExchange::bind(queue, routingKey, args); } -void ManagementExchange::setManagmentAgent (ManagementBroker* agent) +void ManagementExchange::setManagmentAgent (ManagementAgent* agent) { managementAgent = agent; } |
