Return-Path: Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: (qmail 66133 invoked from network); 11 May 2010 16:23:58 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 11 May 2010 16:23:58 -0000 Received: (qmail 75335 invoked by uid 500); 11 May 2010 16:23:58 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 75317 invoked by uid 500); 11 May 2010 16:23:58 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 75310 invoked by uid 99); 11 May 2010 16:23:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 May 2010 16:23:58 +0000 X-ASF-Spam-Status: No, hits=-1419.3 required=10.0 tests=ALL_TRUSTED,AWL 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; Tue, 11 May 2010 16:23:57 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 099872388A38; Tue, 11 May 2010 16:23:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r943164 - /qpid/trunk/qpid/cpp/include/qpid/Url.h Date: Tue, 11 May 2010 16:23:36 -0000 To: commits@qpid.apache.org From: tross@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100511162337.099872388A38@eris.apache.org> Author: tross Date: Tue May 11 16:23:36 2010 New Revision: 943164 URL: http://svn.apache.org/viewvc?rev=943164&view=rev Log: Added missing EXTERNs for Windows Modified: qpid/trunk/qpid/cpp/include/qpid/Url.h Modified: qpid/trunk/qpid/cpp/include/qpid/Url.h URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/include/qpid/Url.h?rev=943164&r1=943163&r2=943164&view=diff ============================================================================== --- qpid/trunk/qpid/cpp/include/qpid/Url.h (original) +++ qpid/trunk/qpid/cpp/include/qpid/Url.h Tue May 11 16:23:36 2010 @@ -70,12 +70,12 @@ struct Url : public std::vector
QPID_COMMON_EXTERN void parse(const std::string& url) { parse(url.c_str()); } /** Replace contesnts with parsed URL. Replace with empty URL if invalid. */ - void parseNoThrow(const char* url); + QPID_COMMON_EXTERN void parseNoThrow(const char* url); /** Add a protocol tag to be recognzed in URLs. * Only for use by protcol plug-in initializers. */ - static void addProtocol(const std::string& tag); + QPID_COMMON_EXTERN static void addProtocol(const std::string& tag); private: mutable std::string cache; // cache string form for efficiency. --------------------------------------------------------------------- Apache Qpid - AMQP Messaging Implementation Project: http://qpid.apache.org Use/Interact: mailto:commits-subscribe@qpid.apache.org