diff options
author | Charles E. Rolke <chug@apache.org> | 2010-10-26 17:22:57 +0000 |
---|---|---|
committer | Charles E. Rolke <chug@apache.org> | 2010-10-26 17:22:57 +0000 |
commit | 2bfaf9dda2e03e3035aec334929f8af51e8b88df (patch) | |
tree | 9d7bd633b59b157646261591b920733bd82dd3f5 | |
parent | 9a0b147fce9af6609e8b1ce1338aaec2dd369ebc (diff) | |
download | qpid-python-2bfaf9dda2e03e3035aec334929f8af51e8b88df.tar.gz |
QPID-2897 repair missing DLL import/export controls
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1027659 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/src/qpid/broker/TopicExchange.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/src/qpid/broker/TopicExchange.h b/cpp/src/qpid/broker/TopicExchange.h index f5573b3463..a6c457dcb3 100644 --- a/cpp/src/qpid/broker/TopicExchange.h +++ b/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); }; |