Author: tabish
Date: Wed Dec 10 14:24:11 2008
New Revision: 725469

URL: http://svn.apache.org/viewvc?rev=725469&view=rev
Log:
https://issues.apache.org/activemq/browse/AMQCPP-213

Fix build error on Windows

Modified:
    
activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/utils/MessagePropertyInterceptor.cpp

Modified: 
activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/utils/MessagePropertyInterceptor.cpp
URL: 
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/utils/MessagePropertyInterceptor.cpp?rev=725469&r1=725468&r2=725469&view=diff
==============================================================================
--- 
activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/utils/MessagePropertyInterceptor.cpp
 (original)
+++ 
activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/utils/MessagePropertyInterceptor.cpp
 Wed Dec 10 14:24:11 2008
@@ -23,6 +23,7 @@
 
 using namespace std;
 using namespace activemq;
+using namespace activemq::util;
 using namespace activemq::exceptions;
 using namespace activemq::connector;
 using namespace activemq::connector::openwire;
@@ -33,7 +34,7 @@
 
 
////////////////////////////////////////////////////////////////////////////////
 MessagePropertyInterceptor::MessagePropertyInterceptor(
-    commands::Message* message, util::PrimitiveMap* properties )
+    commands::Message* message, PrimitiveMap* properties )
         throw( decaf::lang::exceptions::NullPointerException ) {
 
     if( message == NULL ) {
@@ -56,7 +57,7 @@
 
 
////////////////////////////////////////////////////////////////////////////////
 bool MessagePropertyInterceptor::getBooleanProperty( const std::string& name ) 
const
-    throw( exceptions::ActiveMQException ) {
+       throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -75,7 +76,7 @@
 
 
////////////////////////////////////////////////////////////////////////////////
 unsigned char MessagePropertyInterceptor::getByteProperty( const std::string& 
name ) const
-    throw( exceptions::ActiveMQException ) {
+    throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -94,7 +95,7 @@
 
 
////////////////////////////////////////////////////////////////////////////////
 double MessagePropertyInterceptor::getDoubleProperty( const std::string& name 
) const
-    throw( exceptions::ActiveMQException ) {
+    throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -113,7 +114,7 @@
 
 
////////////////////////////////////////////////////////////////////////////////
 float MessagePropertyInterceptor::getFloatProperty( const std::string& name ) 
const
-    throw( exceptions::ActiveMQException ) {
+    throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -132,7 +133,7 @@
 
 
////////////////////////////////////////////////////////////////////////////////
 int MessagePropertyInterceptor::getIntProperty( const std::string& name ) const
-    throw( exceptions::ActiveMQException ) {
+    throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -155,7 +156,7 @@
 
 
////////////////////////////////////////////////////////////////////////////////
 long long MessagePropertyInterceptor::getLongProperty( const std::string& name 
) const
-    throw( exceptions::ActiveMQException ) {
+    throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -178,7 +179,7 @@
 
 
////////////////////////////////////////////////////////////////////////////////
 short MessagePropertyInterceptor::getShortProperty( const std::string& name ) 
const
-    throw( exceptions::ActiveMQException ) {
+    throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -197,7 +198,7 @@
 
 
////////////////////////////////////////////////////////////////////////////////
 std::string MessagePropertyInterceptor::getStringProperty( const std::string& 
name ) const
-    throw( exceptions::ActiveMQException ) {
+    throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -217,9 +218,8 @@
 }
 
 
////////////////////////////////////////////////////////////////////////////////
-void MessagePropertyInterceptor::setBooleanProperty( const std::string& name,
-                                 bool value )
-                                    throw( exceptions::ActiveMQException ) {
+void MessagePropertyInterceptor::setBooleanProperty( const std::string& name, 
bool value )
+       throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -237,9 +237,8 @@
 }
 
 
////////////////////////////////////////////////////////////////////////////////
-void MessagePropertyInterceptor::setByteProperty( const std::string& name,
-                              unsigned char value )
-                                throw( exceptions::ActiveMQException ) {
+void MessagePropertyInterceptor::setByteProperty( const std::string& name, 
unsigned char value )
+       throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -257,9 +256,8 @@
 }
 
 
////////////////////////////////////////////////////////////////////////////////
-void MessagePropertyInterceptor::setDoubleProperty( const std::string& name,
-                                double value )
-                                    throw( exceptions::ActiveMQException ) {
+void MessagePropertyInterceptor::setDoubleProperty( const std::string& name, 
double value )
+       throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -277,9 +275,8 @@
 }
 
 
////////////////////////////////////////////////////////////////////////////////
-void MessagePropertyInterceptor::setFloatProperty( const std::string& name,
-                               float value )
-                                throw( exceptions::ActiveMQException ) {
+void MessagePropertyInterceptor::setFloatProperty( const std::string& name, 
float value )
+       throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -298,7 +295,7 @@
 
 
////////////////////////////////////////////////////////////////////////////////
 void MessagePropertyInterceptor::setIntProperty( const std::string& name, int 
value )
-    throw( exceptions::ActiveMQException ) {
+    throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -321,7 +318,7 @@
 
 
////////////////////////////////////////////////////////////////////////////////
 void MessagePropertyInterceptor::setLongProperty( const std::string& name, 
long long value )
-    throw( exceptions::ActiveMQException ) {
+    throw( activemq::exceptions::ActiveMQException ) {
 
     try{
         this->properties->setLong( name, value );
@@ -333,7 +330,7 @@
 
 
////////////////////////////////////////////////////////////////////////////////
 void MessagePropertyInterceptor::setShortProperty( const std::string& name, 
short value )
-    throw( exceptions::ActiveMQException ) {
+    throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 
@@ -357,7 +354,7 @@
 
////////////////////////////////////////////////////////////////////////////////
 void MessagePropertyInterceptor::setStringProperty( const std::string& name,
                                                     const std::string& value )
-    throw( exceptions::ActiveMQException ) {
+    throw( activemq::exceptions::ActiveMQException ) {
 
     try{
 


Reply via email to