| Index: xfa/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.h
|
| diff --git a/xfa/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.h b/xfa/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.h
|
| index d227708fd8f3c20d9677419760e6f0272db4bbba..e524c4bdaf91db66dfb4dc4ab30e168ae916d958 100644
|
| --- a/xfa/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.h
|
| +++ b/xfa/fxbarcode/qrcode/BC_QRAlignmentPatternFinder.h
|
| @@ -14,16 +14,6 @@ class CBC_CommonBitMatrix;
|
| class CBC_QRAlignmentPattern;
|
|
|
| class CBC_QRAlignmentPatternFinder {
|
| - private:
|
| - CBC_CommonBitMatrix* m_image;
|
| - CFX_PtrArray m_possibleCenters;
|
| - int32_t m_startX;
|
| - int32_t m_startY;
|
| - int32_t m_width;
|
| - int32_t m_height;
|
| - FX_FLOAT m_moduleSize;
|
| - CFX_Int32Array m_crossCheckStateCount;
|
| -
|
| public:
|
| CBC_QRAlignmentPatternFinder(CBC_CommonBitMatrix* image,
|
| int32_t startX,
|
| @@ -42,6 +32,16 @@ class CBC_QRAlignmentPatternFinder {
|
| int32_t i,
|
| int32_t j);
|
| static FX_FLOAT CenterFromEnd(const CFX_Int32Array& stateCount, int32_t end);
|
| +
|
| + private:
|
| + CBC_CommonBitMatrix* m_image;
|
| + CFX_ArrayTemplate<CBC_QRAlignmentPattern*> m_possibleCenters;
|
| + int32_t m_startX;
|
| + int32_t m_startY;
|
| + int32_t m_width;
|
| + int32_t m_height;
|
| + FX_FLOAT m_moduleSize;
|
| + CFX_Int32Array m_crossCheckStateCount;
|
| };
|
|
|
| #endif // XFA_FXBARCODE_QRCODE_BC_QRALIGNMENTPATTERNFINDER_H_
|
|
|