X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseColTypes.h;h=24607d7bdfd9f1945a40829365a52e86479138da;hb=07a771d39ebf4c7f26a04aeb3e06f9d7eb1c6dc2;hp=6df283230bbf387995c504f0817967498a02f286;hpb=27f1388665067f69d5eb64e0cae6bb5f4250beec;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseColTypes.h b/inc/FBaseColTypes.h index 6df2832..24607d7 100644 --- a/inc/FBaseColTypes.h +++ b/inc/FBaseColTypes.h @@ -19,7 +19,7 @@ * @brief This is the header file for the element deleter. * * This header file contains the declarations of the element deleter. - * Depending on the element deleter, collection decides whether to remove the object or not. + * Depending on the element deleter, the collection decides whether to remove the object or not. */ #ifndef _FBASE_COL_TYPES_H_ #define _FBASE_COL_TYPES_H_ @@ -32,29 +32,29 @@ namespace Tizen { namespace Base { namespace Collection typedef void (*DeleterFunctionType)(Object* pObj); /** - * This function does not remove the object. + * Does not remove the object. * * @since 2.0 * - * @param[in] pObj The pointer to the object to remove + * @param[in] pObj A pointer to the object to remove */ _OSP_EXPORT_ void NoOpDeleter(Object* pObj); /** - * This function removes the single object. + * Removes the single object. * * @since 2.0 * - * @param[in] pObj The pointer to the object to remove + * @param[in] pObj A pointer to the object to remove */ _OSP_EXPORT_ void SingleObjectDeleter(Object* pObj); /** - * This function removes the array object. + * Removes the array object. * * @since 2.0 * - * @param[in] pObj The pointer to the object to remove + * @param[in] pObj A pointer to the object to remove */ _OSP_EXPORT_ void ArrayDeleter(Object* pObj);