diff options
| author | Alan Conway <aconway@apache.org> | 2013-05-16 01:02:37 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2013-05-16 01:02:37 +0000 |
| commit | 8b7f87dcb84d593b128485e2599f354c6b88bea4 (patch) | |
| tree | bcc00b6791ee1f3e4a1faeae8b6ef8a40918a6d8 /qpid/cpp/include | |
| parent | 2d84923a606d3697cde559cfdda4d4c4b0718a1c (diff) | |
| download | qpid-python-8b7f87dcb84d593b128485e2599f354c6b88bea4.tar.gz | |
NO-JIRA: HA Use qpid::Address in ha::BrokerInfo rather than host/port.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1483138 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
| -rwxr-xr-x | qpid/cpp/include/qpid/Address.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qpid/cpp/include/qpid/Address.h b/qpid/cpp/include/qpid/Address.h index f5b19d0532..edb405db92 100755 --- a/qpid/cpp/include/qpid/Address.h +++ b/qpid/cpp/include/qpid/Address.h @@ -29,13 +29,13 @@ namespace client { struct ConnectionSettings; } /** - * Contains the protocol address of an AMQP broker. + * Contains the protocol address of an AMQP broker. */ struct Address { public: static const std::string TCP; // Default TCP protocol tag. static const uint16_t AMQP_PORT=5672; // Default AMQP port. - + QPID_COMMON_INLINE_EXTERN explicit Address( const std::string& protocol_=std::string(), const std::string& host_=std::string(), @@ -49,6 +49,7 @@ public: QPID_COMMON_EXTERN std::ostream& operator<<(std::ostream& os, const Address& addr); QPID_COMMON_EXTERN bool operator==(const Address& x, const Address& y); +QPID_COMMON_EXTERN bool operator!=(const Address& x, const Address& y); } // namespace qpid |
