Add grouping for doxygen 55/223955/1 accepted/tizen/unified/20200206.023643 submit/tizen/20200205.073650
authorYoungjae Cho <y0.cho@samsung.com>
Wed, 5 Feb 2020 07:32:53 +0000 (16:32 +0900)
committerYoungjae Cho <y0.cho@samsung.com>
Wed, 5 Feb 2020 07:32:53 +0000 (16:32 +0900)
Change-Id: I80c21ec8e1be992657ea21ab6c965803731245ad
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
include/display-enum.h

index 3b55dbc..9b0e508 100644 (file)
@@ -1,10 +1,18 @@
 #ifndef __TIZEN_SYSTEM_DISPLAY_ENUM_H__
 #define __TIZEN_SYSTEM_DISPLAY_ENUM_H__
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+/**
+ * @addtogroup CAPI_SYSTEM_DEVICE_DISPLAY_MODULE
+ * @{
+ */
 /**
  * @brief Enumeration for the available display states.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
+
 typedef enum
 {
     DISPLAY_STATE_NORMAL, /**< Normal state */
@@ -12,4 +20,13 @@ typedef enum
     DISPLAY_STATE_SCREEN_OFF, /**< Screen off state */
 } display_state_e;
 
+/**
+ * @}
+ */
+
+
+#ifdef __cplusplus
+}
 #endif
+
+#endif // __TIZEN_SYSTEM_DISPLAY_ENUM_H__