From: Joogab Yun Date: Sun, 1 Apr 2018 23:42:26 +0000 (+0900) Subject: add doc for API reference X-Git-Tag: dali_1.3.19~3 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-core.git;a=commitdiff_plain;h=ef33338ef8e96ffcbc0131bd54aed039363325ab add doc for API reference Change-Id: I30533679df52ae45271bb7bb5319b49fcde864bf --- diff --git a/dali/public-api/actors/sampling.h b/dali/public-api/actors/sampling.h old mode 100644 new mode 100755 index 65851a8..e28516a --- a/dali/public-api/actors/sampling.h +++ b/dali/public-api/actors/sampling.h @@ -100,13 +100,16 @@ enum Type namespace WrapMode { - +/** + * @brief Enumeration for Wrap mode. + * @SINCE_1_0.0 + */ enum Type { DEFAULT = 0, ///< Clamp to edge @SINCE_1_0.0 - CLAMP_TO_EDGE, - REPEAT, - MIRRORED_REPEAT + CLAMP_TO_EDGE, ///< Clamp to edge @SINCE_1_0.0 + REPEAT, ///< Repeat @SINCE_1_0.0 + MIRRORED_REPEAT ///< Mirrored repeat @SINCE_1_0.0 }; } //namespace WrapMode diff --git a/dali/public-api/common/dali-vector.h b/dali/public-api/common/dali-vector.h old mode 100644 new mode 100755 index 8d16df1..8422677 --- a/dali/public-api/common/dali-vector.h +++ b/dali/public-api/common/dali-vector.h @@ -416,9 +416,13 @@ public: // API typedef const T* ConstIterator; ///< Const iterator @SINCE_1_0.0 typedef T ItemType; ///< Item type @SINCE_1_0.0 + /** + * @brief Enumeration for BaseType. + * @SINCE_1_0.0 + */ enum { - BaseType = IsTrivialType + BaseType = IsTrivialType ///< @SINCE_1_0.0 }; /**