| Index: xfa/fxbarcode/qrcode/BC_QRDataMask.h
|
| diff --git a/xfa/fxbarcode/qrcode/BC_QRDataMask.h b/xfa/fxbarcode/qrcode/BC_QRDataMask.h
|
| index 88aa1140ea2b30283c9be6380f6b94016d49a643..dc8cf498b344fef5b678c18e32cf720293f321c7 100644
|
| --- a/xfa/fxbarcode/qrcode/BC_QRDataMask.h
|
| +++ b/xfa/fxbarcode/qrcode/BC_QRDataMask.h
|
| @@ -13,16 +13,17 @@ class CBC_CommonBitMatrix;
|
|
|
| class CBC_QRDataMask {
|
| public:
|
| - static CFX_PtrArray* DATA_MASKS;
|
| CBC_QRDataMask();
|
| virtual ~CBC_QRDataMask();
|
| +
|
| static void Initialize();
|
| static void Finalize();
|
| - virtual FX_BOOL IsMasked(int32_t i, int32_t j) = 0;
|
| - void UnmaskBitMatirx(CBC_CommonBitMatrix* bits, int32_t dimension);
|
| static CBC_QRDataMask* ForReference(int32_t reference, int32_t& e);
|
| static int32_t BuildDataMasks();
|
| static void Destroy();
|
| +
|
| + virtual FX_BOOL IsMasked(int32_t i, int32_t j) = 0;
|
| + void UnmaskBitMatrix(CBC_CommonBitMatrix* bits, int32_t dimension);
|
| };
|
|
|
| #endif // XFA_FXBARCODE_QRCODE_BC_QRDATAMASK_H_
|
|
|