Revert "[Tizen] Add codes for Dali Windows Backend"
[platform/core/uifw/dali-core.git] / dali / public-api / common / loading-state.h
index 8c6a026..7f90f14 100644 (file)
 namespace Dali
 {
 /**
- * @addtogroup dali-core-common
+ * @addtogroup dali_core_common
  * @{
  */
 
 /**
- * @brief The status during resource loading operations.
+ * @brief Enumeration for the status during resource loading operations.
+ * @SINCE_1_0.0
  */
 enum LoadingState
 {
-  ResourceLoading,          ///< The resource is loading
-  ResourceLoadingSucceeded, ///< The resource loaded successfully
-  ResourceLoadingFailed     ///< The resource failed to load
+  ResourceLoading,          ///< The resource is loading @SINCE_1_0.0
+  ResourceLoadingSucceeded, ///< The resource loaded successfully @SINCE_1_0.0
+  ResourceLoadingFailed     ///< The resource failed to load @SINCE_1_0.0
 };
 
 /**