You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2010/06/02 16:07:31 UTC

svn commit: r950569 - in /activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core: ActiveMQSessionTest.cpp ActiveMQSessionTest.h

Author: tabish
Date: Wed Jun  2 14:07:31 2010
New Revision: 950569

URL: http://svn.apache.org/viewvc?rev=950569&view=rev
Log:
Add some missing includes that keep the test from compiling if ActiveMQConnection.h is changed at all.

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQSessionTest.cpp
    activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQSessionTest.h

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQSessionTest.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQSessionTest.cpp?rev=950569&r1=950568&r2=950569&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQSessionTest.cpp (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQSessionTest.cpp Wed Jun  2 14:07:31 2010
@@ -17,11 +17,9 @@
 
 #include "ActiveMQSessionTest.h"
 
-#include <decaf/lang/Thread.h>
+#include <cms/ExceptionListener.h>
 #include <activemq/transport/mock/MockTransportFactory.h>
 #include <activemq/transport/TransportRegistry.h>
-#include <decaf/net/Socket.h>
-#include <decaf/net/ServerSocket.h>
 #include <activemq/commands/ActiveMQTextMessage.h>
 #include <activemq/commands/ConsumerId.h>
 #include <activemq/commands/MessageDispatch.h>
@@ -32,6 +30,9 @@
 #include <decaf/util/Properties.h>
 #include <decaf/lang/System.h>
 #include <decaf/lang/Pointer.h>
+#include <decaf/lang/Thread.h>
+#include <decaf/net/Socket.h>
+#include <decaf/net/ServerSocket.h>
 
 using namespace std;
 using namespace activemq;

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQSessionTest.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQSessionTest.h?rev=950569&r1=950568&r2=950569&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQSessionTest.h (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/core/ActiveMQSessionTest.h Wed Jun  2 14:07:31 2010
@@ -23,6 +23,7 @@
 
 #include <cms/Connection.h>
 #include <cms/MessageListener.h>
+#include <cms/ExceptionListener.h>
 
 #include <decaf/util/concurrent/Concurrent.h>
 #include <decaf/util/concurrent/Mutex.h>