[4.0] add doc for API reference 60/174460/1 accepted/tizen/4.0/unified/20180403.060333 submit/tizen_4.0/20180402.083414
authorJoogab Yun <joogab.yun@samsung.com>
Sun, 1 Apr 2018 23:42:26 +0000 (08:42 +0900)
committerJoogab Yun <joogab.yun@samsung.com>
Mon, 2 Apr 2018 07:54:05 +0000 (16:54 +0900)
Change-Id: I30533679df52ae45271bb7bb5319b49fcde864bf

dali/public-api/actors/sampling.h [changed mode: 0644->0755]
dali/public-api/common/dali-vector.h [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 65851a8..e28516a
@@ -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
old mode 100644 (file)
new mode 100755 (executable)
index 8d16df1..8422677
@@ -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
   };
 
   /**