[3.0] Update doxygen comments
[platform/core/uifw/dali-core.git] / dali / public-api / animation / time-period.h
index d433e75..2932981 100644 (file)
@@ -30,26 +30,30 @@ namespace Dali
 
 /**
  * @brief A value-type representing a period of time within an animation.
+ * @SINCE_1_0.0
  */
 struct DALI_IMPORT_API TimePeriod
 {
   /**
-   * @brief Create a time period.
+   * @brief Creates a time period.
    *
-   * @param [in] durationSeconds The duration of the time period in seconds.
+   * @SINCE_1_0.0
+   * @param[in] durationSeconds The duration of the time period in seconds
    */
   explicit TimePeriod(float durationSeconds);
 
   /**
-   * @brief Create a time period.
+   * @brief Creates a time period.
    *
-   * @param [in] delaySeconds A delay before the time period in seconds.
-   * @param [in] durationSeconds The duration of the time period in seconds.
+   * @SINCE_1_0.0
+   * @param[in] delaySeconds A delay before the time period in seconds
+   * @param[in] durationSeconds The duration of the time period in seconds
    */
   TimePeriod(float delaySeconds, float durationSeconds);
 
   /**
-   * @brief Non-virtual destructor; TimePeriod is not intended as a base class.
+   * @brief Non-virtual destructor. TimePeriod is not intended as a base class.
+   * @SINCE_1_0.0
    */
   ~TimePeriod();