From bac25f830b118acb48d60a238aea697c942d86c5 Mon Sep 17 00:00:00 2001 From: Sangjung Woo Date: Wed, 1 Jul 2020 19:29:00 +0900 Subject: [PATCH] [CAPI] Add ml_error_e into CAPI_ML_FRAMEWORK group This patch newly adds the ml_error_e Enumeration into the CAPI_ML_FRAMEWORK doxygen group. Signed-off-by: Sangjung Woo --- api/capi/include/ml-api-common.h | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/api/capi/include/ml-api-common.h b/api/capi/include/ml-api-common.h index e4dd6cd..da44108 100644 --- a/api/capi/include/ml-api-common.h +++ b/api/capi/include/ml-api-common.h @@ -4,12 +4,12 @@ * Copyright (C) 2020 MyungJoo Ham */ /** - * @file ml-api-common.h - * @date 07 May 2020 - * @brief ML-API Common Header - * @see https://github.com/nnstreamer/nnstreamer - * @author MyungJoo Ham - * @bug No known bugs except for NYI items + * @file ml-api-common.h + * @date 07 May 2020 + * @brief ML-API Common Header + * @see https://github.com/nnstreamer/nnstreamer + * @author MyungJoo Ham + * @bug No known bugs except for NYI items * * @details * More entries might be migrated from nnstreamer.h if @@ -23,6 +23,10 @@ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ +/** + * @addtogroup CAPI_ML_FRAMEWORK + * @{ + */ /** * @brief Enumeration for the error codes of NNStreamer. @@ -40,6 +44,9 @@ typedef enum { ML_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of memory (Since 6.0) */ } ml_error_e; +/** + * @} + */ #ifdef __cplusplus } #endif /* __cplusplus */ -- 2.7.4