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/05/12 17:40:59 UTC

svn commit: r773944 - /activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/QueueBrowser.h

Author: tabish
Date: Tue May 12 15:40:58 2009
New Revision: 773944

URL: http://svn.apache.org/viewvc?rev=773944&view=rev
Log:
Fix an error in a Method declaration

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/QueueBrowser.h

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/QueueBrowser.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/QueueBrowser.h?rev=773944&r1=773943&r2=773944&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/QueueBrowser.h (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/QueueBrowser.h Tue May 12 15:40:58 2009
@@ -22,6 +22,7 @@
 #include <cms/Config.h>
 #include <cms/Closeable.h>
 #include <cms/Queue.h>
+#include <cms/Message.h>
 #include <cms/CMSException.h>
 
 namespace cms{
@@ -54,7 +55,7 @@
          * @returns an stl vector for browsing the messages.
          * @throws CMSException if an internal error occurs.
          */
-        virtual void std::vector<cms::Message*> getEnumeration() const throw ( cms::CMSException ) = 0;
+        virtual std::vector<cms::Message*> getEnumeration() const throw ( cms::CMSException ) = 0;
 
     };