Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 12834 invoked from network); 28 Jul 2007 11:59:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Jul 2007 11:59:59 -0000 Received: (qmail 46622 invoked by uid 500); 28 Jul 2007 11:59:59 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 46590 invoked by uid 500); 28 Jul 2007 11:59:59 -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 46574 invoked by uid 99); 28 Jul 2007 11:59:59 -0000 Received: from Unknown (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 Jul 2007 04:59:59 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED 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; Sat, 28 Jul 2007 11:59:58 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 14D4F1A981A; Sat, 28 Jul 2007 04:59:38 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r560531 - /activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/lang/Character.cpp Date: Sat, 28 Jul 2007 11:59:37 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070728115938.14D4F1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Sat Jul 28 04:59:37 2007 New Revision: 560531 URL: http://svn.apache.org/viewvc?view=rev&rev=560531 Log: http://issues.apache.org/activemq/browse/AMQCPP-103 Adding in more Types wrappers Modified: activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/lang/Character.cpp Modified: activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/lang/Character.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/lang/Character.cpp?view=diff&rev=560531&r1=560530&r2=560531 ============================================================================== --- activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/lang/Character.cpp (original) +++ activemq/activemq-cpp/trunk/src/decaf/src/main/decaf/lang/Character.cpp Sat Jul 28 04:59:37 2007 @@ -33,5 +33,5 @@ //////////////////////////////////////////////////////////////////////////////// std::string Character::toString() const { - return ""; // TODO + return string( 1, this->value ); }