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 2009/04/08 16:15:13 UTC

svn commit: r763253 - in /activemq/activemq-cpp/branches/activemq-cpp-2.x/src/main/decaf/internal/net: URIHelper.h URIType.h

Author: tabish
Date: Wed Apr  8 14:15:12 2009
New Revision: 763253

URL: http://svn.apache.org/viewvc?rev=763253&view=rev
Log:
fix for: https://issues.apache.org/activemq/browse/AMQCPP-234

Modified:
    activemq/activemq-cpp/branches/activemq-cpp-2.x/src/main/decaf/internal/net/URIHelper.h
    activemq/activemq-cpp/branches/activemq-cpp-2.x/src/main/decaf/internal/net/URIType.h

Modified: activemq/activemq-cpp/branches/activemq-cpp-2.x/src/main/decaf/internal/net/URIHelper.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/branches/activemq-cpp-2.x/src/main/decaf/internal/net/URIHelper.h?rev=763253&r1=763252&r2=763253&view=diff
==============================================================================
--- activemq/activemq-cpp/branches/activemq-cpp-2.x/src/main/decaf/internal/net/URIHelper.h (original)
+++ activemq/activemq-cpp/branches/activemq-cpp-2.x/src/main/decaf/internal/net/URIHelper.h Wed Apr  8 14:15:12 2009
@@ -19,6 +19,7 @@
 #define _DECAF_INTERNAL_NET_URIHELPER_H_
 
 #include <string>
+#include <decaf/util/Config.h>
 #include <decaf/net/URISyntaxException.h>
 #include <decaf/internal/net/URIType.h>
 
@@ -29,7 +30,7 @@
     /**
      * Helper class used by the URI classes in encoding and decoding of URI's.
      */
-    class URIHelper {
+    class DECAF_API URIHelper {
     private:
 
         const std::string unreserved;

Modified: activemq/activemq-cpp/branches/activemq-cpp-2.x/src/main/decaf/internal/net/URIType.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/branches/activemq-cpp-2.x/src/main/decaf/internal/net/URIType.h?rev=763253&r1=763252&r2=763253&view=diff
==============================================================================
--- activemq/activemq-cpp/branches/activemq-cpp-2.x/src/main/decaf/internal/net/URIType.h (original)
+++ activemq/activemq-cpp/branches/activemq-cpp-2.x/src/main/decaf/internal/net/URIType.h Wed Apr  8 14:15:12 2009
@@ -19,6 +19,7 @@
 #define _DECAF_INTERNAL_NET_URITYPE_H_
 
 #include <string>
+#include <decaf/util/Config.h>
 
 namespace decaf {
 namespace internal {
@@ -27,7 +28,7 @@
     /**
      * Basic type object that holds data that composes a given URI
      */
-    class URIType {
+    class DECAF_API URIType {
     private:
 
         std::string source;