From 021fadea61e0f56aaa51e81e1c557b4049bf745a Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 17 Jul 2012 20:29:57 +0000 Subject: NO-JIRA: Added missing EXTERN statements causing build breakage. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1362635 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/broker/Exchange.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cpp/src') diff --git a/cpp/src/qpid/broker/Exchange.h b/cpp/src/qpid/broker/Exchange.h index 7376f814ed..fba752210f 100644 --- a/cpp/src/qpid/broker/Exchange.h +++ b/cpp/src/qpid/broker/Exchange.h @@ -174,8 +174,9 @@ public: bool isDurable() { return durable; } qpid::framing::FieldTable& getArgs() { return args; } - Exchange::shared_ptr getAlternate() { return alternate; } - void setAlternate(Exchange::shared_ptr _alternate); + QPID_BROKER_EXTERN Exchange::shared_ptr getAlternate() { return alternate; } + QPID_BROKER_EXTERN void setAlternate(Exchange::shared_ptr _alternate); + void incAlternateUsers() { alternateUsers++; } void decAlternateUsers() { alternateUsers--; } bool inUseAsAlternate() { return alternateUsers > 0; } -- cgit v1.2.1