Began removing the excessive use of exceptions in the 1D readers by drawing
[zxing.git] / cpp / core / src / zxing / qrcode / decoder / DataBlock.h
1 #ifndef __DATA_BLOCK_H__
2 #define __DATA_BLOCK_H__
3
4 /*
5  *  DataBlock.h
6  *  zxing
7  *
8  *  Copyright 2010 ZXing authors All rights reserved.
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  *      http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  */
22
23 #include <vector>
24 #include <zxing/common/Counted.h>
25 #include <zxing/common/Array.h>
26 #include <zxing/qrcode/Version.h>
27 #include <zxing/qrcode/ErrorCorrectionLevel.h>
28
29 namespace zxing {
30 namespace qrcode {
31
32 class DataBlock : public Counted {
33 private:
34   int numDataCodewords_;
35   ArrayRef<unsigned char> codewords_;
36
37   DataBlock(int numDataCodewords, ArrayRef<unsigned char> codewords);
38
39 public:
40   static std::vector<Ref<DataBlock> >
41   getDataBlocks(ArrayRef<unsigned char> rawCodewords, Version *version, ErrorCorrectionLevel &ecLevel);
42
43   int getNumDataCodewords();
44   ArrayRef<unsigned char> getCodewords();
45 };
46
47 }
48 }
49
50 #endif // __DATA_BLOCK_H__