| 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 _BC_QRCODERVERSION_H_ | 7 #ifndef _BC_QRCODERVERSION_H_ |
| 8 #define _BC_QRCODERVERSION_H_ | 8 #define _BC_QRCODERVERSION_H_ |
| 9 class CBC_QRCoderECBlocks; | 9 class CBC_QRCoderECBlocks; |
| 10 class CBC_CommonBitMatrix; | 10 class CBC_CommonBitMatrix; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 FX_INT32 GetDimensionForVersion(); | 33 FX_INT32 GetDimensionForVersion(); |
| 34 CBC_CommonBitMatrix *BuildFunctionPattern(FX_INT32 &e); | 34 CBC_CommonBitMatrix *BuildFunctionPattern(FX_INT32 &e); |
| 35 CFX_Int32Array* GetAlignmentPatternCenters(); | 35 CFX_Int32Array* GetAlignmentPatternCenters(); |
| 36 CBC_QRCoderECBlocks* GetECBlocksForLevel(CBC_QRCoderErrorCorrectionLevel *ec
Level); | 36 CBC_QRCoderECBlocks* GetECBlocksForLevel(CBC_QRCoderErrorCorrectionLevel *ec
Level); |
| 37 static CBC_QRCoderVersion* GetVersionForNumber(FX_INT32 versionNumber, FX_IN
T32 &e); | 37 static CBC_QRCoderVersion* GetVersionForNumber(FX_INT32 versionNumber, FX_IN
T32 &e); |
| 38 static CBC_QRCoderVersion* GetProvisionalVersionForDimension(FX_INT32 dimens
ion, FX_INT32 &e); | 38 static CBC_QRCoderVersion* GetProvisionalVersionForDimension(FX_INT32 dimens
ion, FX_INT32 &e); |
| 39 static CBC_QRCoderVersion* DecodeVersionInformation(FX_INT32 versionBits, FX
_INT32 &e); | 39 static CBC_QRCoderVersion* DecodeVersionInformation(FX_INT32 versionBits, FX
_INT32 &e); |
| 40 static void Destroy(); | 40 static void Destroy(); |
| 41 }; | 41 }; |
| 42 #endif | 42 #endif |
| OLD | NEW |