Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 20590 invoked from network); 1 Jan 2009 12:25:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Jan 2009 12:25:20 -0000 Received: (qmail 28759 invoked by uid 500); 1 Jan 2009 12:25:20 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 28735 invoked by uid 500); 1 Jan 2009 12:25:19 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 28726 invoked by uid 99); 1 Jan 2009 12:25:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jan 2009 04:25:19 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jan 2009 12:25:18 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1C3ED23888A5; Thu, 1 Jan 2009 04:24:57 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r730534 - /activemq/activemq-cpp/trunk/src/main/activemq/transport/CompositeTransport.h Date: Thu, 01 Jan 2009 12:24:56 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090101122457.1C3ED23888A5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Thu Jan 1 04:24:56 2009 New Revision: 730534 URL: http://svn.apache.org/viewvc?rev=730534&view=rev Log: https://issues.apache.org/activemq/browse/AMQCPP-100 Fix header so it will compile Modified: activemq/activemq-cpp/trunk/src/main/activemq/transport/CompositeTransport.h Modified: activemq/activemq-cpp/trunk/src/main/activemq/transport/CompositeTransport.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/transport/CompositeTransport.h?rev=730534&r1=730533&r2=730534&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/main/activemq/transport/CompositeTransport.h (original) +++ activemq/activemq-cpp/trunk/src/main/activemq/transport/CompositeTransport.h Thu Jan 1 04:24:56 2009 @@ -44,7 +44,7 @@ * @param uri * The new URI to add to the set this composite maintains. */ - virtual void addURI( const URI& uri ) = 0; + virtual void addURI( const decaf::net::URI& uri ) = 0; /** * Remove a URI from the set of URI's that represents the set of Transports @@ -55,7 +55,7 @@ * @param uri * The new URI to remove to the set this composite maintains. */ - virtual void removeURI( const URI& uri ) = 0; + virtual void removeURI( const decaf::net::URI& uri ) = 0; };