Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 4274 invoked from network); 15 Dec 2008 21:55:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Dec 2008 21:55:55 -0000 Received: (qmail 48254 invoked by uid 500); 15 Dec 2008 21:56:08 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 48237 invoked by uid 500); 15 Dec 2008 21:56:08 -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 48228 invoked by uid 99); 15 Dec 2008 21:56:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Dec 2008 13:56:08 -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; Mon, 15 Dec 2008 21:55:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CDFA223888A4; Mon, 15 Dec 2008 13:55:34 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r726821 - in /activemq/activemq-cpp/trunk/src/main/decaf/net: URL.cpp URL.h Date: Mon, 15 Dec 2008 21:55:34 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081215215534.CDFA223888A4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Mon Dec 15 13:55:34 2008 New Revision: 726821 URL: http://svn.apache.org/viewvc?rev=726821&view=rev Log: Add a string constructor for use by the URI class's toURI method. Modified: activemq/activemq-cpp/trunk/src/main/decaf/net/URL.cpp activemq/activemq-cpp/trunk/src/main/decaf/net/URL.h Modified: activemq/activemq-cpp/trunk/src/main/decaf/net/URL.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/decaf/net/URL.cpp?rev=726821&r1=726820&r2=726821&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/main/decaf/net/URL.cpp (original) +++ activemq/activemq-cpp/trunk/src/main/decaf/net/URL.cpp Mon Dec 15 13:55:34 2008 @@ -17,9 +17,14 @@ #include "URL.h" +using namespace std; using namespace decaf; using namespace decaf::net; //////////////////////////////////////////////////////////////////////////////// URL::URL() { } + +//////////////////////////////////////////////////////////////////////////////// +URL::URL( const std::string& url ) { +} Modified: activemq/activemq-cpp/trunk/src/main/decaf/net/URL.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/decaf/net/URL.h?rev=726821&r1=726820&r2=726821&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/main/decaf/net/URL.h (original) +++ activemq/activemq-cpp/trunk/src/main/decaf/net/URL.h Mon Dec 15 13:55:34 2008 @@ -19,6 +19,7 @@ #define _DECAF_NET_URL_H_ #include +#include namespace decaf{ namespace net{ @@ -106,6 +107,7 @@ public: URL(); + URL( const std::string& url ); virtual ~URL() {} };