You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2007/12/08 17:20:21 UTC

svn commit: r602494 - /activemq/activemq-cpp/decaf/trunk/src/main/decaf/nio/CharBuffer.h

Author: tabish
Date: Sat Dec  8 08:20:16 2007
New Revision: 602494

URL: http://svn.apache.org/viewvc?rev=602494&view=rev
Log:
http://issues.apache.org/activemq/browse/AMQCPP-153

Working on implementing the NIO package

Modified:
    activemq/activemq-cpp/decaf/trunk/src/main/decaf/nio/CharBuffer.h

Modified: activemq/activemq-cpp/decaf/trunk/src/main/decaf/nio/CharBuffer.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/decaf/trunk/src/main/decaf/nio/CharBuffer.h?rev=602494&r1=602493&r2=602494&view=diff
==============================================================================
--- activemq/activemq-cpp/decaf/trunk/src/main/decaf/nio/CharBuffer.h (original)
+++ activemq/activemq-cpp/decaf/trunk/src/main/decaf/nio/CharBuffer.h Sat Dec  8 08:20:16 2007
@@ -544,8 +544,9 @@
          * @throws NullPointerException if csq is null.
          * @throws IndexOutOfBoundsException if the preconditions on start and end fail
          */
-        static CharBuffer* wrap( lang::CharSequence* csq, std::size_t start, std::size_t end )
-            throw( lang::exceptions::NullPointerException );
+// TODO
+//        static CharBuffer* wrap( lang::CharSequence* csq, std::size_t start, std::size_t end )
+//            throw( lang::exceptions::NullPointerException );
 
         /**
          * Wraps a full CharSequence into a buffer.
@@ -559,8 +560,9 @@
          * @returns the newly created CharBuffer, caller owns.
          * @throws NullPointerException if csq is null.
          */
-        static CharBuffer* wrap( lang::CharSequence* csq )
-            throw ( decaf::lang::exceptions::NullPointerException );
+// TODO
+//        static CharBuffer* wrap( lang::CharSequence* csq )
+//            throw ( decaf::lang::exceptions::NullPointerException );
 
     };