Author: tabish
Date: Thu Mar 19 15:45:34 2009
New Revision: 756053
URL: http://svn.apache.org/viewvc?rev=756053&view=rev
Log:
Changes need when compiling on Windows.
Modified:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/CommandSourceGenerator.java
activemq/activemq-cpp/trunk/src/main/activemq/commands/BrokerInfo.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionControl.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionError.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionInfo.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/ConsumerControl.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/ConsumerInfo.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/ControlCommand.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/DestinationInfo.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/FlushCommand.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/KeepAliveInfo.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/Message.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageAck.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageDispatch.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageDispatchNotification.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/MessagePull.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/ProducerAck.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/ProducerInfo.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/RemoveInfo.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/RemoveSubscriptionInfo.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/ReplayCommand.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/Response.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/SessionInfo.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/ShutdownInfo.cpp
activemq/activemq-cpp/trunk/src/main/activemq/commands/TransactionInfo.cpp
Modified:
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/CommandSourceGenerator.java
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/CommandSourceGenerator.java?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
---
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/CommandSourceGenerator.java
(original)
+++
activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/commands/CommandSourceGenerator.java
Thu Mar 19 15:45:34 2009
@@ -184,7 +184,7 @@
if( getBaseClassName().equals( "BaseCommand" ) ) {
out.println("////////////////////////////////////////////////////////////////////////////////");
out.println("decaf::lang::Pointer<commands::Command>
"+getClassName()+"::visit( activemq::state::CommandVisitor* visitor ) ");
- out.println(" throw( exceptions::ActiveMQException ) {");
+ out.println(" throw( activemq::exceptions::ActiveMQException )
{");
out.println("");
out.println(" return visitor->process"+getClassName()+"( this
);");
out.println("}");
Modified: activemq/activemq-cpp/trunk/src/main/activemq/commands/BrokerInfo.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/BrokerInfo.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/BrokerInfo.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/BrokerInfo.cpp Thu
Mar 19 15:45:34 2009
@@ -358,7 +358,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> BrokerInfo::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processBrokerInfo( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionControl.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionControl.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
---
activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionControl.cpp
(original)
+++
activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionControl.cpp
Thu Mar 19 15:45:34 2009
@@ -196,7 +196,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> ConnectionControl::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processConnectionControl( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionError.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionError.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionError.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionError.cpp
Thu Mar 19 15:45:34 2009
@@ -174,7 +174,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> ConnectionError::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processConnectionError( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionInfo.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionInfo.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionInfo.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/ConnectionInfo.cpp
Thu Mar 19 15:45:34 2009
@@ -289,7 +289,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> ConnectionInfo::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processConnectionInfo( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/ConsumerControl.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/ConsumerControl.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/ConsumerControl.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/ConsumerControl.cpp
Thu Mar 19 15:45:34 2009
@@ -225,7 +225,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> ConsumerControl::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processConsumerControl( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/ConsumerInfo.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/ConsumerInfo.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/ConsumerInfo.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/ConsumerInfo.cpp Thu
Mar 19 15:45:34 2009
@@ -454,7 +454,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> ConsumerInfo::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processConsumerInfo( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/ControlCommand.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/ControlCommand.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/ControlCommand.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/ControlCommand.cpp
Thu Mar 19 15:45:34 2009
@@ -137,7 +137,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> ControlCommand::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processControlCommand( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/DestinationInfo.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/DestinationInfo.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/DestinationInfo.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/DestinationInfo.cpp
Thu Mar 19 15:45:34 2009
@@ -239,7 +239,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> DestinationInfo::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processDestinationInfo( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/FlushCommand.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/FlushCommand.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/FlushCommand.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/FlushCommand.cpp Thu
Mar 19 15:45:34 2009
@@ -116,7 +116,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> FlushCommand::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processFlushCommand( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/KeepAliveInfo.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/KeepAliveInfo.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/KeepAliveInfo.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/KeepAliveInfo.cpp
Thu Mar 19 15:45:34 2009
@@ -116,7 +116,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> KeepAliveInfo::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processKeepAliveInfo( this );
}
Modified: activemq/activemq-cpp/trunk/src/main/activemq/commands/Message.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/Message.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/Message.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/Message.cpp Thu Mar
19 15:45:34 2009
@@ -796,7 +796,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> Message::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processMessage( this );
}
Modified: activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageAck.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageAck.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageAck.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageAck.cpp Thu
Mar 19 15:45:34 2009
@@ -293,7 +293,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> MessageAck::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processMessageAck( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageDispatch.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageDispatch.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageDispatch.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageDispatch.cpp
Thu Mar 19 15:45:34 2009
@@ -219,7 +219,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> MessageDispatch::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processMessageDispatch( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageDispatchNotification.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageDispatchNotification.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
---
activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageDispatchNotification.cpp
(original)
+++
activemq/activemq-cpp/trunk/src/main/activemq/commands/MessageDispatchNotification.cpp
Thu Mar 19 15:45:34 2009
@@ -219,7 +219,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> MessageDispatchNotification::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processMessageDispatchNotification( this );
}
Modified: activemq/activemq-cpp/trunk/src/main/activemq/commands/MessagePull.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/MessagePull.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/MessagePull.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/MessagePull.cpp Thu
Mar 19 15:45:34 2009
@@ -240,7 +240,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> MessagePull::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processMessagePull( this );
}
Modified: activemq/activemq-cpp/trunk/src/main/activemq/commands/ProducerAck.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/ProducerAck.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/ProducerAck.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/ProducerAck.cpp Thu
Mar 19 15:45:34 2009
@@ -161,7 +161,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> ProducerAck::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processProducerAck( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/ProducerInfo.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/ProducerInfo.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/ProducerInfo.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/ProducerInfo.cpp Thu
Mar 19 15:45:34 2009
@@ -239,7 +239,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> ProducerInfo::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processProducerInfo( this );
}
Modified: activemq/activemq-cpp/trunk/src/main/activemq/commands/RemoveInfo.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/RemoveInfo.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/RemoveInfo.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/RemoveInfo.cpp Thu
Mar 19 15:45:34 2009
@@ -145,7 +145,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> RemoveInfo::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processRemoveInfo( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/RemoveSubscriptionInfo.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/RemoveSubscriptionInfo.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
---
activemq/activemq-cpp/trunk/src/main/activemq/commands/RemoveSubscriptionInfo.cpp
(original)
+++
activemq/activemq-cpp/trunk/src/main/activemq/commands/RemoveSubscriptionInfo.cpp
Thu Mar 19 15:45:34 2009
@@ -187,7 +187,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> RemoveSubscriptionInfo::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processRemoveSubscriptionInfo( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/ReplayCommand.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/ReplayCommand.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/ReplayCommand.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/ReplayCommand.cpp
Thu Mar 19 15:45:34 2009
@@ -148,7 +148,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> ReplayCommand::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processReplayCommand( this );
}
Modified: activemq/activemq-cpp/trunk/src/main/activemq/commands/Response.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/Response.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/Response.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/Response.cpp Thu Mar
19 15:45:34 2009
@@ -132,7 +132,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> Response::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processResponse( this );
}
Modified: activemq/activemq-cpp/trunk/src/main/activemq/commands/SessionInfo.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/SessionInfo.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/SessionInfo.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/SessionInfo.cpp Thu
Mar 19 15:45:34 2009
@@ -145,7 +145,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> SessionInfo::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processSessionInfo( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/ShutdownInfo.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/ShutdownInfo.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/ShutdownInfo.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/ShutdownInfo.cpp Thu
Mar 19 15:45:34 2009
@@ -116,7 +116,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> ShutdownInfo::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processShutdownInfo( this );
}
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/commands/TransactionInfo.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/commands/TransactionInfo.cpp?rev=756053&r1=756052&r2=756053&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/activemq/commands/TransactionInfo.cpp
(original)
+++ activemq/activemq-cpp/trunk/src/main/activemq/commands/TransactionInfo.cpp
Thu Mar 19 15:45:34 2009
@@ -190,7 +190,7 @@
////////////////////////////////////////////////////////////////////////////////
decaf::lang::Pointer<commands::Command> TransactionInfo::visit(
activemq::state::CommandVisitor* visitor )
- throw( exceptions::ActiveMQException ) {
+ throw( activemq::exceptions::ActiveMQException ) {
return visitor->processTransactionInfo( this );
}