summaryrefslogtreecommitdiff
path: root/cpp/include
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2010-04-09 22:41:07 +0000
committerAndrew Stitcher <astitcher@apache.org>2010-04-09 22:41:07 +0000
commitefb01def0c8af535e34db922ee90ae18541ceae4 (patch)
tree0f4e2043e8d2733b79f2ea1efa4c9cb028c2831a /cpp/include
parent8053a209d6946a453e1cebc62a09e06f3bcb8387 (diff)
downloadqpid-python-efb01def0c8af535e34db922ee90ae18541ceae4.tar.gz
Small fixes to get recent management changes to compile under Visual Studio/Windows
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@932641 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include')
-rw-r--r--cpp/include/qpid/management/Mutex.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/cpp/include/qpid/management/Mutex.h b/cpp/include/qpid/management/Mutex.h
index ec1ff35402..67ae04bae9 100644
--- a/cpp/include/qpid/management/Mutex.h
+++ b/cpp/include/qpid/management/Mutex.h
@@ -19,6 +19,7 @@
*
*/
+#include "qpid/CommonImportExport.h"
namespace qpid {
namespace sys {
@@ -52,10 +53,10 @@ namespace qpid {
typedef ScopedLockTemplate<Mutex> ScopedLock;
typedef ScopedUnlockTemplate<Mutex> ScopedUnlock;
- Mutex();
- ~Mutex();
- void lock();
- void unlock();
+ QPID_COMMON_EXTERN Mutex();
+ QPID_COMMON_EXTERN ~Mutex();
+ QPID_COMMON_EXTERN void lock();
+ QPID_COMMON_EXTERN void unlock();
private:
sys::Mutex* impl;
};