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 2007/06/11 21:36:16 UTC

svn commit: r546230 - in /activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util: Map.h Queue.h Set.h

Author: tabish
Date: Mon Jun 11 12:36:15 2007
New Revision: 546230

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

Building Decaf lib

Modified:
    activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Map.h
    activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Queue.h
    activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Set.h

Modified: activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Map.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Map.h?view=diff&rev=546230&r1=546229&r2=546230
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Map.h (original)
+++ activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Map.h Mon Jun 11 12:36:15 2007
@@ -32,7 +32,8 @@
      * a more user-friendly interface and to provide common
      * functions that do not exist in std::map.
      */
-    template <typename K, typename V> class Map : public concurrent::Synchronizable
+    template <typename K, typename V> class DECAF_API Map :
+        public concurrent::Synchronizable
     {
     private:
 

Modified: activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Queue.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Queue.h?view=diff&rev=546230&r1=546229&r2=546230
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Queue.h (original)
+++ activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Queue.h Mon Jun 11 12:36:15 2007
@@ -55,7 +55,7 @@
      * polling loop to ensure that you don't get stuck there.
      */
 
-    template <typename T> class Queue : public concurrent::Synchronizable
+    template <typename T> class DECAF_API Queue : public concurrent::Synchronizable
     {
     public:
 

Modified: activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Set.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Set.h?view=diff&rev=546230&r1=546229&r2=546230
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Set.h (original)
+++ activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/util/Set.h Mon Jun 11 12:36:15 2007
@@ -32,7 +32,7 @@
      * a more user-friendly interface and to provide common
      * functions that do not exist in std::map.
      */
-    template <typename E> class Set : public concurrent::Synchronizable
+    template <typename E> class DECAF_API Set : public concurrent::Synchronizable
     {
     private: