summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2012-07-17 20:29:57 +0000
committerAlan Conway <aconway@apache.org>2012-07-17 20:29:57 +0000
commite7f0ab02294684517d33c460caf64e3d0b164f2c (patch)
treeca538e3c94ae0688134d3c4691a09a955fd69abe /qpid/cpp/src
parent215cf97f02ea033fd2cf1a73040cd3f5ec576e49 (diff)
downloadqpid-python-e7f0ab02294684517d33c460caf64e3d0b164f2c.tar.gz
NO-JIRA: Added missing EXTERN statements causing build breakage.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1362635 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/broker/Exchange.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/broker/Exchange.h b/qpid/cpp/src/qpid/broker/Exchange.h
index 7376f814ed..fba752210f 100644
--- a/qpid/cpp/src/qpid/broker/Exchange.h
+++ b/qpid/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; }