diff options
| author | Stephen D. Huston <shuston@apache.org> | 2009-04-30 21:09:51 +0000 |
|---|---|---|
| committer | Stephen D. Huston <shuston@apache.org> | 2009-04-30 21:09:51 +0000 |
| commit | eb7dfacb4683303e3412e62f160078971d496523 (patch) | |
| tree | b6035d98d70fee23e724a6032c15e0f2cc531f86 /cpp/src/qpid/client | |
| parent | af6f980ead308669354ceaa2b6586d13bf886e5f (diff) | |
| download | qpid-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.h | 5 |
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); |
