| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef XFA_SRC_FXBARCODE_DATAMATRIX_BC_DATAMATRIXDATABLOCK_H_ | 7 #ifndef XFA_SRC_FXBARCODE_DATAMATRIX_BC_DATAMATRIXDATABLOCK_H_ |
| 8 #define XFA_SRC_FXBARCODE_DATAMATRIX_BC_DATAMATRIXDATABLOCK_H_ | 8 #define XFA_SRC_FXBARCODE_DATAMATRIX_BC_DATAMATRIXDATABLOCK_H_ |
| 9 | 9 |
| 10 #include "core/include/fxcrt/fx_basic.h" |
| 11 |
| 10 class CBC_DataMatrixVersion; | 12 class CBC_DataMatrixVersion; |
| 13 |
| 11 class CBC_DataMatrixDataBlock { | 14 class CBC_DataMatrixDataBlock { |
| 12 public: | 15 public: |
| 13 virtual ~CBC_DataMatrixDataBlock(); | 16 virtual ~CBC_DataMatrixDataBlock(); |
| 14 | 17 |
| 15 int32_t GetNumDataCodewords(); | 18 int32_t GetNumDataCodewords(); |
| 16 CFX_ByteArray* GetCodewords(); | 19 CFX_ByteArray* GetCodewords(); |
| 17 | 20 |
| 18 static CFX_PtrArray* GetDataBlocks(CFX_ByteArray* rawCodewords, | 21 static CFX_PtrArray* GetDataBlocks(CFX_ByteArray* rawCodewords, |
| 19 CBC_DataMatrixVersion* version, | 22 CBC_DataMatrixVersion* version, |
| 20 int32_t& e); | 23 int32_t& e); |
| 21 | 24 |
| 22 private: | 25 private: |
| 23 int32_t m_numDataCodewords; | 26 int32_t m_numDataCodewords; |
| 24 CFX_ByteArray m_codewords; | 27 CFX_ByteArray m_codewords; |
| 25 | 28 |
| 26 CBC_DataMatrixDataBlock(int32_t numDataCodewords, CFX_ByteArray* codewords); | 29 CBC_DataMatrixDataBlock(int32_t numDataCodewords, CFX_ByteArray* codewords); |
| 27 }; | 30 }; |
| 28 | 31 |
| 29 #endif // XFA_SRC_FXBARCODE_DATAMATRIX_BC_DATAMATRIXDATABLOCK_H_ | 32 #endif // XFA_SRC_FXBARCODE_DATAMATRIX_BC_DATAMATRIXDATABLOCK_H_ |
| OLD | NEW |