#ADD: DataMatrix reader.
authorluizcroc <luizcroc@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Tue, 23 Feb 2010 23:50:08 +0000 (23:50 +0000)
committerluizcroc <luizcroc@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Tue, 23 Feb 2010 23:50:08 +0000 (23:50 +0000)
commitb0b2b014e8d1da533b5db368f6eb6df8c1d2fe71
tree58f349357f20f15da55a70d4f31a4c9757a173cf
parentea022b1db67d156bf38b4018d85219a379a28227
#ADD: DataMatrix reader.
#CHANGE: MultiFormatReader can read DataMatrix.

git-svn-id: http://zxing.googlecode.com/svn/trunk@1217 59b500cc-1b3d-0410-9834-0bbf25fbcc57
20 files changed:
cpp/core/src/zxing/BarcodeFormat.h
cpp/core/src/zxing/MultiFormatReader.cpp
cpp/core/src/zxing/datamatrix/DataMatrixReader.cpp [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/DataMatrixReader.h [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/Version.cpp [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/Version.h [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.cpp [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.h [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/decoder/DataBlock.cpp [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/decoder/DataBlock.h [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.cpp [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.h [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/decoder/Decoder.cpp [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/decoder/Decoder.h [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/detector/CornerPoint.cpp [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/detector/CornerPoint.h [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/detector/Detector.cpp [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/detector/Detector.h [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/detector/MonochromeRectangleDetector.cpp [new file with mode: 0644]
cpp/core/src/zxing/datamatrix/detector/MonochromeRectangleDetector.h [new file with mode: 0644]