Return-Path: Delivered-To: apmail-geronimo-activemq-commits-archive@www.apache.org Received: (qmail 97610 invoked from network); 28 Nov 2006 11:29:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Nov 2006 11:29:52 -0000 Received: (qmail 1571 invoked by uid 500); 28 Nov 2006 11:30:01 -0000 Delivered-To: apmail-geronimo-activemq-commits-archive@geronimo.apache.org Received: (qmail 1548 invoked by uid 500); 28 Nov 2006 11:30:01 -0000 Mailing-List: contact activemq-commits-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-dev@geronimo.apache.org Delivered-To: mailing list activemq-commits@geronimo.apache.org Received: (qmail 1539 invoked by uid 99); 28 Nov 2006 11:30:01 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Nov 2006 03:30:01 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Nov 2006 03:29:51 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 7114C1A984A; Tue, 28 Nov 2006 03:29:14 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r479998 - /incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/Message.h Date: Tue, 28 Nov 2006 11:29:14 -0000 To: activemq-commits@geronimo.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061128112914.7114C1A984A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Tue Nov 28 03:29:13 2006 New Revision: 479998 URL: http://svn.apache.org/viewvc?view=rev&rev=479998 Log: https://issues.apache.org/activemq/browse/AMQCPP-16 Changed the get / set ReplyTo methods to handle cms::Destination pointers Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/Message.h Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/Message.h URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/Message.h?view=diff&rev=479998&r1=479997&r2=479998 ============================================================================== --- incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/Message.h (original) +++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/Message.h Tue Nov 28 03:29:13 2006 @@ -308,13 +308,13 @@ * Gets the CMS Reply To Address for this Message * @return Reply To Value */ - virtual std::string getCMSReplyTo() const = 0; + virtual const cms::Destination* getCMSReplyTo() const = 0; /** * Sets the CMS Reply To Address for this message * @param id - Reply To value */ - virtual void setCMSReplyTo( const std::string& id ) = 0; + virtual void setCMSReplyTo( const cms::Destination* destination ) = 0; /** * Gets the Time Stamp for this Message