summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorCharles E. Rolke <chug@apache.org>2010-10-26 17:22:57 +0000
committerCharles E. Rolke <chug@apache.org>2010-10-26 17:22:57 +0000
commit6ae14220b28c5b647118bba56a93af92f0f413a4 (patch)
treebe8d6ce3e4600067aaea3622be97176aec0902bd /qpid/cpp/src
parentd5a464134048e3bbf7ddb0cf8a0fabdb189478f9 (diff)
downloadqpid-python-6ae14220b28c5b647118bba56a93af92f0f413a4.tar.gz
QPID-2897 repair missing DLL import/export controls
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1027659 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/broker/TopicExchange.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/qpid/cpp/src/qpid/broker/TopicExchange.h b/qpid/cpp/src/qpid/broker/TopicExchange.h
index f5573b3463..a6c457dcb3 100644
--- a/qpid/cpp/src/qpid/broker/TopicExchange.h
+++ b/qpid/cpp/src/qpid/broker/TopicExchange.h
@@ -71,22 +71,22 @@ class TopicExchange : public virtual Exchange {
BindingNode() {};
BindingNode(const std::string& token) : token(token) {};
- virtual ~BindingNode();
+ QPID_BROKER_EXTERN virtual ~BindingNode();
// add normalizedRoute to tree, return associated BindingKey
- BindingKey* addBindingKey(const std::string& normalizedRoute);
+ QPID_BROKER_EXTERN BindingKey* addBindingKey(const std::string& normalizedRoute);
// return BindingKey associated with normalizedRoute
- BindingKey* getBindingKey(const std::string& normalizedRoute);
+ QPID_BROKER_EXTERN BindingKey* getBindingKey(const std::string& normalizedRoute);
// remove BindingKey associated with normalizedRoute
- void removeBindingKey(const std::string& normalizedRoute);
+ QPID_BROKER_EXTERN void removeBindingKey(const std::string& normalizedRoute);
// applies iter against each node in tree until iter returns false
- bool iterateAll(TreeIterator& iter);
+ QPID_BROKER_EXTERN bool iterateAll(TreeIterator& iter);
// applies iter against only matching nodes until iter returns false
- bool iterateMatch(const std::string& routingKey, TreeIterator& iter);
+ QPID_BROKER_EXTERN bool iterateMatch(const std::string& routingKey, TreeIterator& iter);
std::string routePattern; // normalized binding that matches this node
BindingKey bindings; // for matches against this node
@@ -108,7 +108,7 @@ class TopicExchange : public virtual Exchange {
bool removeBindingKey(TokenIterator& bKey,
const std::string& fullPattern);
BindingKey* getBindingKey(TokenIterator& bKey);
- virtual bool iterateMatch(TokenIterator& rKey, TreeIterator& iter);
+ QPID_BROKER_EXTERN virtual bool iterateMatch(TokenIterator& rKey, TreeIterator& iter);
bool iterateMatchChildren(const TokenIterator& key, TreeIterator& iter);
};