diff options
| author | Alan Conway <aconway@apache.org> | 2012-07-17 20:29:57 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2012-07-17 20:29:57 +0000 |
| commit | 021fadea61e0f56aaa51e81e1c557b4049bf745a (patch) | |
| tree | 42e208a299c050291b9a0c141fd3fe3b917527ab /cpp/src | |
| parent | b1a46db3269e1060a451e2e03ab38d73b3bdc55f (diff) | |
| download | qpid-python-021fadea61e0f56aaa51e81e1c557b4049bf745a.tar.gz | |
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
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/broker/Exchange.h | 5 |
1 files changed, 3 insertions, 2 deletions
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; } |
