Add grouping for doxygen 56/223956/1 accepted/tizen/5.5/unified/20200206.060349 submit/tizen_5.5/20200205.073706
authorYoungjae Cho <y0.cho@samsung.com>
Wed, 5 Feb 2020 07:32:53 +0000 (16:32 +0900)
committerHyotaek Shim <hyotaek.shim@samsung.com>
Wed, 5 Feb 2020 07:36:01 +0000 (07:36 +0000)
Change-Id: I80c21ec8e1be992657ea21ab6c965803731245ad
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
(cherry picked from commit 5be07a7989dd28d3258d49b63de5c89d9f9dff09)

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__