X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseColAllElementsDeleter.h;h=dad0b70b5a853a2da449e0c3433b85bdf0a4277f;hb=60d143778a54ae4c638a08d8c7304b099f70434e;hp=2ec6360b159112eab55a6a4fe4d64f6c0d6b5ddd;hpb=27f1388665067f69d5eb64e0cae6bb5f4250beec;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseColAllElementsDeleter.h b/inc/FBaseColAllElementsDeleter.h index 2ec6360..dad0b70 100644 --- a/inc/FBaseColAllElementsDeleter.h +++ b/inc/FBaseColAllElementsDeleter.h @@ -20,7 +20,6 @@ * * This header file contains the declarations of the %AllElementsDeleter struct. */ - #ifndef _FBASE_COL_ALL_ELEMENTS_DELETER_H_ #define _FBASE_COL_ALL_ELEMENTS_DELETER_H_ @@ -28,9 +27,9 @@ namespace Tizen { namespace Base { namespace Collection { /** * @struct AllElementsDeleter - * @brief This function object provides a resource clean-up function for collection. + * @brief This function object provides a resource clean-up function for a collection. * - * The %AllElementsDeleter struct provides a resource clean-up function for collection. This can be used with unique_ptr as a custom deleter. + * The %AllElementsDeleter struct provides a resource clean-up function for a collection. This can be used with unique_ptr as a custom deleter. * * @since 2.0 */ @@ -42,8 +41,8 @@ struct AllElementsDeleter * @since 2.0 * * @param[in] c The collection to clean up - * @remarks The collection should be destructible and support the RemoveAll(bool) method. - * IList, IMap, and IMultiMap support this concept. + * @remarks The collection should be destructible and should support the RemoveAll(bool) method. + * IList, IMap, and IMultiMap support this concept. */ template< typename Collection > void operator ()(Collection* c)