summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/management
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2008-12-18 14:29:26 +0000
committerTed Ross <tross@apache.org>2008-12-18 14:29:26 +0000
commit42c28a2aebf4887006ba80a4274718fb4e264520 (patch)
tree1bf2d76101150c6023fbb9459b26e9bc720e56d2 /cpp/src/qpid/management
parentac3a06a8c1d5d898d582e015ee53ecd2ac4bad7d (diff)
downloadqpid-python-42c28a2aebf4887006ba80a4274718fb4e264520.tar.gz
Added a general ConnectionSettings alternative for agent initialization.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@727726 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/management')
-rw-r--r--cpp/src/qpid/management/ManagementBroker.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/cpp/src/qpid/management/ManagementBroker.h b/cpp/src/qpid/management/ManagementBroker.h
index 77f4a53836..59dfb98596 100644
--- a/cpp/src/qpid/management/ManagementBroker.h
+++ b/cpp/src/qpid/management/ManagementBroker.h
@@ -71,9 +71,10 @@ public:
const framing::Uuid& getUuid() const { return uuid; }
// Stubs for remote management agent calls
- void init (const std::string&, uint16_t, uint16_t, bool,
- const std::string&, const std::string&, const std::string&,
- const std::string&, const std::string&) { assert(0); }
+ void init(const std::string&, uint16_t, uint16_t, bool,
+ const std::string&, const std::string&, const std::string&,
+ const std::string&, const std::string&) { assert(0); }
+ void init(const client::ConnectionSettings&, uint16_t, bool, const std::string&) { assert(0); }
uint32_t pollCallbacks (uint32_t) { assert(0); return 0; }
int getSignalFd () { assert(0); return -1; }