Small style stuff
[zxing.git] / cpp / core / src / zxing / qrcode / decoder / BitMatrixParser.h
1 #ifndef __BIT_MATRIX_PARSER_H__
2 #define __BIT_MATRIX_PARSER_H__
3
4 /*
5  *  BitMatrixParser.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 <zxing/ReaderException.h>
24 #include <zxing/common/BitMatrix.h>
25 #include <zxing/common/Counted.h>
26 #include <zxing/common/Array.h>
27 #include <zxing/qrcode/Version.h>
28 #include <zxing/qrcode/FormatInformation.h>
29
30 namespace zxing {
31 namespace qrcode {
32
33 class BitMatrixParser : public Counted {
34 private:
35   Ref<BitMatrix> bitMatrix_;
36   Version *parsedVersion_;
37   Ref<FormatInformation> parsedFormatInfo_;
38
39   int copyBit(size_t x, size_t y, int versionBits);
40
41 public:
42   BitMatrixParser(Ref<BitMatrix> bitMatrix);
43   Ref<FormatInformation> readFormatInformation();
44   Version *readVersion();
45   ArrayRef<unsigned char> readCodewords();
46
47 private:
48   BitMatrixParser(const BitMatrixParser&);
49   BitMatrixParser& operator =(const BitMatrixParser&);
50   
51 };
52
53 }
54 }
55
56 #endif // __BIT_MATRIX_PARSER_H__