From ccc9f4f85b8ed6a014a91ded018c6ac34c7be2e9 Mon Sep 17 00:00:00 2001 From: Seoyeon Kim Date: Mon, 18 May 2020 13:52:55 +0900 Subject: [PATCH] [4.0] 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 --- dali/public-api/common/dali-vector.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dali/public-api/common/dali-vector.h b/dali/public-api/common/dali-vector.h index 8422677..e4bb6ff 100755 --- a/dali/public-api/common/dali-vector.h +++ b/dali/public-api/common/dali-vector.h @@ -219,6 +219,7 @@ protected: // Data }; +/// @cond internal /** * @brief Vector algorithm variant for trivial types. * @@ -377,7 +378,9 @@ protected: // API for deriving classes CopyMemory( at, from, size ); } }; +/// @endcond +/// @cond internal /** * @brief Vector algorithm variant for complex types. * @@ -395,6 +398,7 @@ private: ~VectorAlgorithms() { } }; +/// @endcond /** * @brief Vector class with minimum space allocation when it's empty. -- 2.7.4