You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by sh...@apache.org on 2009/04/30 23:09:51 UTC

svn commit: r770446 - /qpid/trunk/qpid/cpp/src/qpid/client/Dispatcher.h

Author: shuston
Date: Thu Apr 30 21:09:51 2009
New Revision: 770446

URL: http://svn.apache.org/viewvc?rev=770446&view=rev
Log:
Add extern for run() so tests can link correctly on Windows

Modified:
    qpid/trunk/qpid/cpp/src/qpid/client/Dispatcher.h

Modified: qpid/trunk/qpid/cpp/src/qpid/client/Dispatcher.h
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/client/Dispatcher.h?rev=770446&r1=770445&r2=770446&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/client/Dispatcher.h (original)
+++ qpid/trunk/qpid/cpp/src/qpid/client/Dispatcher.h Thu Apr 30 21:09:51 2009
@@ -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 @@
 
     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);
 



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org