Merge commits Tizen 2.2 to Tizen 2.2.1
[platform/framework/native/vision.git] / inc / FUixVisionQrCodeTypes.h
index 15826b4..7bc2474 100644 (file)
@@ -19,6 +19,8 @@
 /**
  * @file     FUixVisionQrCodeTypes.h
  * @brief    This is the header file for the QR code types.
+ *
+ * This header file contains the declarations of the QR code types.
  */
 
 #ifndef _FUIX_VISION_QR_CODE_TYPES_H_
@@ -30,34 +32,30 @@ namespace Tizen { namespace Uix { namespace Vision
 /**
  * @enum     QrCodeErrorCorrectionLevel
  *
- * Defines possible error correction levels.
- *
- * @brief    Enumeration that defines possible error correction levels for QR code.
+ * Defines the possible error correction levels for the QR code.
  *
  * @since    2.1
  */
 enum QrCodeErrorCorrectionLevel
 {
-    QR_CODE_ERROR_CORRECTION_LEVEL_L = 1, /** < Low */
-    QR_CODE_ERROR_CORRECTION_LEVEL_M = 2, /** < Medium */
-    QR_CODE_ERROR_CORRECTION_LEVEL_Q = 3, /** < Quartile */
-    QR_CODE_ERROR_CORRECTION_LEVEL_H = 4  /** < High */
+    QR_CODE_ERROR_CORRECTION_LEVEL_L = 1, /**< Low */
+    QR_CODE_ERROR_CORRECTION_LEVEL_M = 2, /**< Medium */
+    QR_CODE_ERROR_CORRECTION_LEVEL_Q = 3, /**< Quartile */
+    QR_CODE_ERROR_CORRECTION_LEVEL_H = 4  /**< High */
 };
 
 /**
  * @enum     QrCodeMode
  *
- * Defines possible encoding modes for QR codes.
- *
- * @brief    Enumeration that defines possible encoding modes for QR code.
+ * Defines the possible encoding modes of the QR code.
  *
  * @since    2.1
  */
 enum QrCodeMode
 {
-    QR_CODE_MODE_ALPHANUMERIC = 0,  /** < Alphanumeric */
-    QR_CODE_MODE_BYTE = 1,          /** < Byte */
-    QR_CODE_MODE_UTF8 = 2           /** < UTF8 */
+    QR_CODE_MODE_ALPHANUMERIC = 0,  /**< Alphanumeric */
+    QR_CODE_MODE_BYTE = 1,          /**< Byte */
+    QR_CODE_MODE_UTF8 = 2           /**< UTF8 */
 };
 
 } } } //Tizen::Uix::Vision