summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/client
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-04-30 21:09:51 +0000
committerStephen D. Huston <shuston@apache.org>2009-04-30 21:09:51 +0000
commiteb7dfacb4683303e3412e62f160078971d496523 (patch)
treeb6035d98d70fee23e724a6032c15e0f2cc531f86 /cpp/src/qpid/client
parentaf6f980ead308669354ceaa2b6586d13bf886e5f (diff)
downloadqpid-python-eb7dfacb4683303e3412e62f160078971d496523.tar.gz
Add extern for run() so tests can link correctly on Windows
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@770446 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client')
-rw-r--r--cpp/src/qpid/client/Dispatcher.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/Dispatcher.h b/cpp/src/qpid/client/Dispatcher.h
index 197d3591aa..9b8a6de908 100644
--- a/cpp/src/qpid/client/Dispatcher.h
+++ b/cpp/src/qpid/client/Dispatcher.h
@@ -29,6 +29,7 @@
#include "qpid/sys/Mutex.h"
#include "qpid/sys/Runnable.h"
#include "qpid/sys/Thread.h"
+#include "ClientImportExport.h"
#include "MessageListener.h"
#include "SubscriptionImpl.h"
@@ -65,7 +66,9 @@ public:
void start();
void wait();
- void run();
+ // As this class is marked 'internal', no extern should be made here;
+ // however, some test programs rely on it.
+ QPID_CLIENT_EXTERN void run();
void stop();
void setAutoStop(bool b);