[3.0] Update doxygen comments
[platform/core/uifw/dali-adaptor.git] / adaptors / public-api / adaptor-framework / application-configuration.h
index e55d802..c5b2c9e 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_adaptor_framework
+ * @{
+ */
+
+/**
+ * @brief Enumeration for Application configuration.
+ * @SINCE_1_0.0
+ */
 namespace Configuration
 {
+
+/**
+ * @brief Enumeration for application context loss policy.
+ * @SINCE_1_0.0
+ */
 enum ContextLoss
 {
-  APPLICATION_HANDLES_CONTEXT_LOSS,  ///< Application will tear down and recreate UI on context loss and context regained signals. Dali doesn't need to retain data.
-  APPLICATION_DOES_NOT_HANDLE_CONTEXT_LOSS, ///< Application expects Dali to retain data ( increased memory footprint )
+  APPLICATION_HANDLES_CONTEXT_LOSS,  ///< Application will tear down and recreate UI on context loss and context regained signals. Dali doesn't need to retain data. @SINCE_1_0.0
+  APPLICATION_DOES_NOT_HANDLE_CONTEXT_LOSS, ///< Application expects Dali to retain data ( increased memory footprint ) @SINCE_1_0.0
 };
 
 } // Configuration
+
+/**
+ * @}
+ */
 } // namespace Dali
 
 #endif