summaryrefslogtreecommitdiff
path: root/cpp/src/qpid
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2011-02-21 12:13:22 +0000
committerGordon Sim <gsim@apache.org>2011-02-21 12:13:22 +0000
commit53a8d34d7fb0502052ea0b6ef3c3dc3dde783ef8 (patch)
tree9db09676f856af57e7633d3a82efb9106209bed1 /cpp/src/qpid
parent8a4e58853dc9253f57f42300886b67113f102411 (diff)
downloadqpid-python-53a8d34d7fb0502052ea0b6ef3c3dc3dde783ef8.tar.gz
QPID-2935: export symbols needed for linking unit tests on windows
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1072941 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid')
-rw-r--r--cpp/src/qpid/broker/QueueFlowLimit.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/qpid/broker/QueueFlowLimit.h b/cpp/src/qpid/broker/QueueFlowLimit.h
index 4d33007f0d..69d91df45a 100644
--- a/cpp/src/qpid/broker/QueueFlowLimit.h
+++ b/cpp/src/qpid/broker/QueueFlowLimit.h
@@ -81,9 +81,9 @@ class Broker;
virtual ~QueueFlowLimit() {}
/** the queue has added QueuedMessage. Returns true if flow state changes */
- void enqueued(const QueuedMessage&);
+ QPID_BROKER_EXTERN void enqueued(const QueuedMessage&);
/** the queue has removed QueuedMessage. Returns true if flow state changes */
- void dequeued(const QueuedMessage&);
+ QPID_BROKER_EXTERN void dequeued(const QueuedMessage&);
/** for clustering: */
/** true if the given message is flow controlled, and cannot be completed. */
@@ -118,10 +118,10 @@ class Broker;
const Broker *broker;
- QueueFlowLimit(Queue *queue,
+ QPID_BROKER_EXTERN QueueFlowLimit(Queue *queue,
uint32_t flowStopCount, uint32_t flowResumeCount,
uint64_t flowStopSize, uint64_t flowResumeSize);
- static QueueFlowLimit *createLimit(Queue *queue, const qpid::framing::FieldTable& settings);
+ static QPID_BROKER_EXTERN QueueFlowLimit *createLimit(Queue *queue, const qpid::framing::FieldTable& settings);
};
}}