From: Seoyeon Kim Date: Mon, 18 May 2020 04:52:55 +0000 (+0900) Subject: Add internal tag to VectorAlgorithms X-Git-Tag: accepted/tizen/5.5/unified/20200608.142156~3 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-core.git;a=commitdiff_plain;h=49d1880037aa6c191fdbae9889737b11d724442a Add internal tag to VectorAlgorithms - To hide VectorAlgorithms template for app developers, added @cond internal tag to it. Change-Id: I151c749d91cb8c06a1eddb84a62bf69bd8fa1f8c Signed-off-by: Seoyeon Kim --- diff --git a/dali/public-api/common/dali-vector.h b/dali/public-api/common/dali-vector.h index 6d8dcee..98fae38 100755 --- a/dali/public-api/common/dali-vector.h +++ b/dali/public-api/common/dali-vector.h @@ -220,6 +220,7 @@ protected: // Data }; +/// @cond internal /** * @brief Vector algorithm variant for trivial types. * @@ -378,7 +379,9 @@ protected: // API for deriving classes CopyMemory( reinterpret_cast< char* >( at ), reinterpret_cast< const char* >( from ), size ); } }; +/// @endcond +/// @cond internal /** * @brief Vector algorithm variant for complex types. * @@ -396,6 +399,7 @@ private: ~VectorAlgorithms() { } }; +/// @endcond /** * @brief Vector class with minimum space allocation when it's empty.