Enable build with iniparser v 3.1
[platform/framework/native/appfw.git] / inc / FBaseColStack.h
index 0b63db5..15fb460 100644 (file)
@@ -28,7 +28,6 @@
 #include <FBaseTypes.h>
 #include <FBaseColICollection.h>
 
-
 namespace Tizen { namespace Base { namespace Collection
 {
 
@@ -101,11 +100,11 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   capacity                 The number of elements @n
-        *                               The default capacity is @c 10.
-        * @exception   E_SUCCESS               The method is successful.
-        * @exception   E_INVALID_ARG   The specified input parameter is invalid, or
-        *                                                                the specified @c capacity is negative.
+        * @param[in]   capacity                        The number of elements @n
+        *                                                                      The default capacity is @c 10.
+        * @exception   E_SUCCESS                       The method is successful.
+        * @exception   E_INVALID_ARG           The specified input parameter is invalid, or
+        *                                                                      the specified @c capacity is negative.
         * @remarks             If the number of elements added to the stack reaches the current capacity,
         *                              the capacity is automatically increased by memory reallocation. @n
         *                              Therefore, if the size of the stack can be estimated,
@@ -122,7 +121,7 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   collection  The collection to copy elements from
+        * @param[in]   collection                      The collection to copy elements from
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_OPERATION     The current state of the instance prohibits the execution of the specified operation, or
         *                                                                      the @c collection is modified during the operation of this method.
@@ -139,7 +138,7 @@ public:
         * @return              An enumerator (an instance of the IEnumerator derived class) of this stack, @n
         *                              else @c null if an exception occurs
         * @remarks             The specific error code can be accessed using the GetLastResult() method.
-        * @see                         IEnumerator
+        * @see                 IEnumerator
         */
        virtual IEnumerator* GetEnumeratorN(void) const;
 
@@ -168,7 +167,7 @@ public:
         * @exception   E_UNDERFLOW     The operation (arithmetic/casting/conversion) has caused an underflow, or
         *                                                      this stack is empty.
         * @remarks             The specific error code can be accessed using the GetLastResult() method.
-        * @see                         Push(Object*)
+        * @see                 Push(Object*)
         */
        virtual Object* Pop(void);
 
@@ -182,11 +181,11 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   obj  The object to add to this stack
+        * @param[in]   obj                             The object to add to this stack
         * @exception   E_SUCCESS               The method is successful.
         * @exception   E_OUT_OF_MEMORY The memory is insufficient.
         * @remarks             This method performs a shallow copy. It inserts just the pointer; not the element itself.
-        * @see                         Pop()
+        * @see                 Pop()
         * @endif
         */
        result Push(const Object& obj)
@@ -200,11 +199,11 @@ public:
         * @since 2.0
         *
         * @return              An error code
-        * @param[in]   pObj            The pointer to object to add to this stack
+        * @param[in]   pObj                    The pointer to object to add to this stack
         * @exception   E_SUCCESS               The method is successful.
         * @exception   E_INVALID_ARG   The specified input parameter is invalid.
         * @remarks             This method performs a shallow copy. It inserts just the pointer; not the element itself.
-        * @see                         Pop()
+        * @see                 Pop()
         */
        virtual result Push(Object* pObj);
 
@@ -251,8 +250,8 @@ public:
         *
         * @return              An error code
         * @param[in]   collection      The collection to locate
-        * @param[out]  out  Set to @c true if this stack contains all the elements in the specified collection, @n
-        *                                       else @c false
+        * @param[out]  out                     Set to @c true if this stack contains all the elements in the specified collection, @n
+        *                                                      else @c false
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_OPERATION     The current state of the instance prohibits the execution of the specified operation, or
         *                                                                      the @c collection is modified during the operation of this method.
@@ -271,8 +270,8 @@ public:
         * @since 2.0
         *
         * @return              @c true if this stack contains all the elements in the specified collection, @n
-        *                                      else @c false
-        * @param[in]   collection      The collection to locate
+        *                              else @c false
+        * @param[in]   collection                      The collection to locate
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_OPERATION     The current state of the instance prohibits the execution of the specified operation, or
         *                                                                      the @c collection is modified during the operation of this method.