One-D barcodes reader port on c++
[zxing.git] / cpp / core / src / zxing / BarcodeFormat.h
index 4ce0b35..c55edad 100644 (file)
@@ -6,6 +6,7 @@
  *  zxing
  *
  *  Created by Christian Brunschen on 13/05/2008.
+ *     Modified by Lukasz Warchol on 02/02/2010
  *  Copyright 2008 ZXing authors All rights reserved.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  */
 
 namespace zxing {
-
-typedef enum BarcodeFormat {
-  BarcodeFormat_None = 0, BarcodeFormat_QR_CODE
-} BarcodeFormat;
+       
+       typedef enum BarcodeFormat {
+               BarcodeFormat_None = 0, 
+               BarcodeFormat_QR_CODE,
+               BarcodeFormat_UPC_E,
+               BarcodeFormat_UPC_A,
+               BarcodeFormat_EAN_8,
+               BarcodeFormat_EAN_13,
+               BarcodeFormat_CODE_128,
+               BarcodeFormat_CODE_39,
+               BarcodeFormat_ITF
+       } BarcodeFormat;
+       
 }
 
 #endif // __BARCODE_FORMAT_H__