Enable build with iniparser v 3.1
[platform/framework/native/appfw.git] / inc / FBaseCharacter.h
index c4e8dd2..483894e 100644 (file)
@@ -147,7 +147,7 @@ public:
         *      @li == 0  if the value of the current instance is equal to the value of the input instance
         *      @li >  0  if the value of the current instance is greater than the value of the input instance
         *      @endcode
-        *      
+        *
         */
        int CompareTo(const Character& value) const;
 
@@ -158,7 +158,7 @@ public:
         *      @since 2.0
         *      @return         @c true if the input Object is equal to the calling %Object, @n
         *                              else @c false
-        *      @param[in]      obj             The object to compare with the calling object
+        *      @param[in]      obj     The object to compare with the calling object
         *      @see                    Tizen::Base::Object::Equals()
         */
        virtual bool Equals(const Object& obj) const;
@@ -331,7 +331,7 @@ public:
         *      @since 2.0
         *      @if OSPCOMPAT
         *      @compatibility  This method has compatibility issues with OSP compatible applications. @n
-        *                      For more information, see @ref CompCharacterIsAlphaNumericPage "here".
+        *                                      For more information, see @ref CompCharacterIsAlphaNumericPage "here".
         *      @endif
         *      @return         @c true if the input character is alphanumeric, @n
         *                              else @c false
@@ -343,7 +343,7 @@ public:
         *      @if OSPCOMPAT
         *      @page                   CompCharacterIsAlphaNumericPage Compatibility for IsAlphaNumeric()
         *      @section                CompCharacterIsAlphaNumericPageIssueSection Issues
-        *                              Implementing this method in OSP compatible applications has the following issues: @n
+        *                                      Implementing this method in OSP compatible applications has the following issues: @n
         *
         *      -# The method returns true only if the character is alphabet character and cannot checks other Unicode character in Letter and digit category.
         *
@@ -373,7 +373,7 @@ public:
         *      @since 2.0
         *      @if OSPCOMPAT
         *      @compatibility  This method has compatibility issues with OSP compatible applications. @n
-        *                      For more information, see @ref CompCharacterIsLetterPage "here".
+        *                                      For more information, see @ref CompCharacterIsLetterPage "here".
         *      @endif
         *      @return         @c true if the input character is an alphabet, @n
         *                              else @c false
@@ -385,7 +385,7 @@ public:
         *      @if OSPCOMPAT
         *      @page                   CompCharacterIsLetterPage Compatibility for IsLetter()
         *      @section                CompCharacterIsLetterPageIssueSection Issues
-        *                              Implementing this method in OSP compatible applications has the following issues: @n
+        *                                      Implementing this method in OSP compatible applications has the following issues: @n
         *
         *      -# The method returns true only if the character is alphabet character and cannot checks other Unicode character in Letter category.
         *
@@ -453,7 +453,7 @@ public:
 
        /**
         *      Returns the value of the input character in the supplied radix. @n
-        * The value of radix must be between RADIX_MIN and RADIX_MAX.
+        *      The value of radix must be between RADIX_MIN and RADIX_MAX.
         *
         *      @since 2.0
         *
@@ -465,7 +465,7 @@ public:
 
        /**
         *      Returns the value which represents the input digit with specified radix. @n
-        * The value of radix must be between RADIX_MIN and RADIX_MAX.
+        *      The value of radix must be between RADIX_MIN and RADIX_MAX.
         *
         *      @since 2.0
         *
@@ -478,7 +478,7 @@ public:
 
        /**
         *      Gets the numeric value of the input unicode character. @n
-     * This is used when some numeric values are fractions, negative, or too large for @c int value.
+        *      This is used when some numeric values are fractions, negative, or too large for @c int value.
         *
         *      @since 2.0
         *
@@ -493,7 +493,7 @@ public:
         *      @since 2.0
         *
         *      @return         @c true if the Unicode character is an assigned character, @n
-        *                          else @c false
+        *                              else @c false
         *      @param[in]      ch      A Unicode character
         */
        static bool IsDefined(wchar_t ch);
@@ -505,7 +505,7 @@ public:
         *      @since 2.0
         *
         *      @return         @c true if the Unicode character is a whitespace character, @n
-        *                          else @c false
+        *                              else @c false
         *      @param[in]      ch      A Unicode character
         *
         *      @code
@@ -530,7 +530,7 @@ public:
         *      @since 2.0
         *
         *      @return         @c true if the Unicode character is a title character, @n
-        *                          else @c false
+        *                              else @c false
         *      @param[in]      ch      A Unicode character
         */
        static bool IsTitleCase(wchar_t ch);
@@ -551,7 +551,7 @@ public:
         *      @since 2.0
         *
         *      @return         @c true if the Unicode character is an ISO control character, @n
-        *                          else @c false
+        *                              else @c false
         *      @param[in]      ch      A Unicode character
         */
        static bool IsISOControl(wchar_t ch);
@@ -630,7 +630,7 @@ private:
        wchar_t __val;
 
        friend class _CharacterImpl;
-       class _CharacterImpl * __pCharacterImpl;
+       class _CharacterImpl* __pCharacterImpl;
 
 }; // Character