From 2bfaf9dda2e03e3035aec334929f8af51e8b88df Mon Sep 17 00:00:00 2001 From: "Charles E. Rolke" Date: Tue, 26 Oct 2010 17:22:57 +0000 Subject: 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 --- cpp/src/qpid/broker/TopicExchange.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'cpp/src/qpid') 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); }; -- cgit v1.2.1