X-Git-Url: http://git.rot13.org/?p=zxing.git;a=blobdiff_plain;f=cpp%2Fcore%2Fsrc%2Fzxing%2FBarcodeFormat.h;h=c55edad195ec971a43e542d1c34340ad77b048c3;hp=4ce0b35d5dfc005bff88e400584d8e7f0ebd2c94;hb=f60aaa3608812e2e19550c0ced1ce0f947dfedb0;hpb=ac343e4ddc7af1f54c2d2634abb1be992d183a35 diff --git a/cpp/core/src/zxing/BarcodeFormat.h b/cpp/core/src/zxing/BarcodeFormat.h index 4ce0b35d..c55edad1 100644 --- a/cpp/core/src/zxing/BarcodeFormat.h +++ b/cpp/core/src/zxing/BarcodeFormat.h @@ -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"); @@ -22,10 +23,19 @@ */ 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__