summaryrefslogtreecommitdiff
path: root/qpid/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
commite94bc23df7b9d7a1612c27d8d4f3e2739fd151c8 (patch)
tree5ad54cfd68de305fd3f133fa614f16400ef013af /qpid/cpp/include
parent6838485261187ec6597233c95130948589c2fcd5 (diff)
downloadqpid-python-e94bc23df7b9d7a1612c27d8d4f3e2739fd151c8.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@932641 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
-rw-r--r--qpid/cpp/include/qpid/management/Mutex.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/qpid/cpp/include/qpid/management/Mutex.h b/qpid/cpp/include/qpid/management/Mutex.h
index ec1ff35402..67ae04bae9 100644
--- a/qpid/cpp/include/qpid/management/Mutex.h
+++ b/qpid/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;
};