[ACR][22/08/2013][Modify] Enhance Parse() API to support radix ranging from 2 to...
[platform/framework/native/appfw.git] / inc / FBaseLongLong.h
index 2734687..9945877 100644 (file)
@@ -27,7 +27,6 @@
 
 #include <FBaseNumber.h>
 
-
 namespace Tizen { namespace Base
 {
 /**
@@ -171,7 +170,7 @@ public:
        *
        *        @since         2.0
        *
-       *        @return        An integer value indicating the hash value of the specified @c long @c long value
+       *        @return                An integer value indicating the hash value of the specified @c long @c long value
        *        @param[in]   val   A @c long @c long value to get the hash value
        */
        static int GetHashCode(long long val);
@@ -253,7 +252,7 @@ public:
         *
         *      @since                  2.0
         *
-        *      @return                 The string containing a Unicode representation of the specified @c signed @c long @c long value
+        *      @return                         The string containing a Unicode representation of the specified @c signed @c long @c long value
         *      @param[in]      value   A @c signed @c long @c long value to convert
         */
        static String ToString(long long value);
@@ -284,7 +283,7 @@ public:
         *      @return                 An error code
         *      @param[in]      s                               A string representing a numeric value
         *      @param[in]      radix                   The radix of the string representing a numeric value @n
-        *                                                              It must be either 2, 8, 10 or 16.
+        *                                              Radix value range is from 2 to 36.
         *      @param[out]     ret                             The result of the operation
         *      @exception      E_SUCCESS               The method is successful.
         *      @exception      E_NUM_FORMAT    The specified string does not contain a number that can be parsed.
@@ -317,7 +316,7 @@ public:
 
 private:
        friend class _LongLongImpl;
-       class _LongLongImpl * __pLongLongImpl;
+       class _LongLongImpl* __pLongLongImpl;
 
 }; // LongLong