c55edad195ec971a43e542d1c34340ad77b048c3
[zxing.git] / cpp / core / src / zxing / BarcodeFormat.h
1 #ifndef __BARCODE_FORMAT_H__
2 #define __BARCODE_FORMAT_H__
3
4 /*
5  *  BarcodeFormat.h
6  *  zxing
7  *
8  *  Created by Christian Brunschen on 13/05/2008.
9  *      Modified by Lukasz Warchol on 02/02/2010
10  *  Copyright 2008 ZXing authors All rights reserved.
11  *
12  * Licensed under the Apache License, Version 2.0 (the "License");
13  * you may not use this file except in compliance with the License.
14  * You may obtain a copy of the License at
15  *
16  *      http://www.apache.org/licenses/LICENSE-2.0
17  *
18  * Unless required by applicable law or agreed to in writing, software
19  * distributed under the License is distributed on an "AS IS" BASIS,
20  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21  * See the License for the specific language governing permissions and
22  * limitations under the License.
23  */
24
25 namespace zxing {
26         
27         typedef enum BarcodeFormat {
28                 BarcodeFormat_None = 0, 
29                 BarcodeFormat_QR_CODE,
30                 BarcodeFormat_UPC_E,
31                 BarcodeFormat_UPC_A,
32                 BarcodeFormat_EAN_8,
33                 BarcodeFormat_EAN_13,
34                 BarcodeFormat_CODE_128,
35                 BarcodeFormat_CODE_39,
36                 BarcodeFormat_ITF
37         } BarcodeFormat;
38         
39 }
40
41 #endif // __BARCODE_FORMAT_H__