summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2012-11-15 16:30:18 +0000
committerAlan Conway <aconway@apache.org>2012-11-15 16:30:18 +0000
commit74cf1e52ab5ef4f4c69a9b78f9664ea0558e5207 (patch)
tree5d22dc6d68b75402a54eae37453d83864fe181ca /cpp/src
parentabe66b3f8e18fc8b6f016b922db24100ff834734 (diff)
downloadqpid-python-74cf1e52ab5ef4f4c69a9b78f9664ea0558e5207.tar.gz
NO-JIRA: Fix windows builds: missing EXTERNs
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1409869 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/broker/Exchange.h4
-rw-r--r--cpp/src/qpid/broker/Queue.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/qpid/broker/Exchange.h b/cpp/src/qpid/broker/Exchange.h
index 8197b64d6b..70ed393f64 100644
--- a/cpp/src/qpid/broker/Exchange.h
+++ b/cpp/src/qpid/broker/Exchange.h
@@ -173,8 +173,8 @@ public:
const std::string& getName() const { return name; }
bool isDurable() { return durable; }
- const qpid::framing::FieldTable& getArgs() const { return args; }
- void setArgs(const framing::FieldTable&);
+ QPID_BROKER_EXTERN const qpid::framing::FieldTable& getArgs() const { return args; }
+ QPID_BROKER_EXTERN void setArgs(const framing::FieldTable&);
QPID_BROKER_EXTERN Exchange::shared_ptr getAlternate() { return alternate; }
QPID_BROKER_EXTERN void setAlternate(Exchange::shared_ptr _alternate);
diff --git a/cpp/src/qpid/broker/Queue.h b/cpp/src/qpid/broker/Queue.h
index eecc8ce433..3a668276e8 100644
--- a/cpp/src/qpid/broker/Queue.h
+++ b/cpp/src/qpid/broker/Queue.h
@@ -425,7 +425,7 @@ class Queue : public boost::enable_shared_from_this<Queue>,
QPID_BROKER_EXTERN void setDequeueSincePurge(uint32_t value);
/** Add an argument to be included in management messages about this queue. */
- void addArgument(const std::string& key, const types::Variant& value);
+ QPID_BROKER_EXTERN void addArgument(const std::string& key, const types::Variant& value);
friend class QueueFactory;
};