From c8cb9e028139e53c9881220d291b4576067a12f1 Mon Sep 17 00:00:00 2001 From: "darpan.ka" Date: Thu, 22 Aug 2013 10:44:04 +0900 Subject: [PATCH] [ACR][22/08/2013][Modify] Enhance Parse() API to support radix ranging from 2 to 36. Currenctly binary, octal, decimal and hexadecimal radix are supported Change-Id: I0b98c853218082d250ff03e62a441bb8577e0bd8 Signed-off-by: darpan.ka --- inc/FBaseInt8.h | 2 +- inc/FBaseInteger.h | 2 +- inc/FBaseLong.h | 2 +- inc/FBaseLongLong.h | 2 +- inc/FBaseShort.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/inc/FBaseInt8.h b/inc/FBaseInt8.h index 950347d..bfdf319 100644 --- a/inc/FBaseInt8.h +++ b/inc/FBaseInt8.h @@ -260,7 +260,7 @@ public: * @return The @c signed @c char equivalent of the specified string representing the numeric value using the specified index * @param[in] s A string representing a numeric value * @param[in] radix The radix of the string representing a numeric value @n - * It must either be 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. diff --git a/inc/FBaseInteger.h b/inc/FBaseInteger.h index 85af846..e0ab82e 100644 --- a/inc/FBaseInteger.h +++ b/inc/FBaseInteger.h @@ -226,7 +226,7 @@ public: * @return An error code * @param[in] s A string representing a numeric value * @param[in] radix The radix of the string representing the numeric value @n - * It must either be 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. diff --git a/inc/FBaseLong.h b/inc/FBaseLong.h index 08cb852..e2f7bda 100644 --- a/inc/FBaseLong.h +++ b/inc/FBaseLong.h @@ -225,7 +225,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. diff --git a/inc/FBaseLongLong.h b/inc/FBaseLongLong.h index 27c73a8..9945877 100644 --- a/inc/FBaseLongLong.h +++ b/inc/FBaseLongLong.h @@ -283,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. diff --git a/inc/FBaseShort.h b/inc/FBaseShort.h index ab6c4c1..d7b27df 100644 --- a/inc/FBaseShort.h +++ b/inc/FBaseShort.h @@ -245,7 +245,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 either be @c 2, @c 8, @c 10, or @c 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. -- 2.7.4