[3.0] Update doxygen comments
[platform/core/uifw/dali-core.git] / dali / public-api / animation / time-period.h
index d48736c..2932981 100644 (file)
 namespace Dali
 {
 /**
- * @addtogroup dali-core-animation
+ * @addtogroup dali_core_animation
  * @{
  */
 
 /**
  * @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();