summaryrefslogtreecommitdiff
path: root/qpid/cpp/include
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/cpp/include')
-rwxr-xr-xqpid/cpp/include/qpid/Address.h5
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