Chromium Code Reviews| Index: xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h |
| diff --git a/xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h b/xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h |
| index 1091d6723d90aefc53cd87eac372c5ab2c27d7bb..1e591f9c7037607b9c0f034371a582ebc98d62e8 100644 |
| --- a/xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h |
| +++ b/xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h |
| @@ -12,17 +12,19 @@ |
| class CBC_QRFinderPattern; |
| class CBC_QRFinderPatternInfo { |
| + public: |
| + CBC_QRFinderPatternInfo( |
|
Lei Zhang
2016/04/28 21:26:12
explicit
Tom Sepez
2016/04/28 22:03:49
Done.
|
| + CFX_ArrayTemplate<CBC_QRFinderPattern*>* patternCenters); |
| + virtual ~CBC_QRFinderPatternInfo(); |
|
Lei Zhang
2016/04/28 21:26:12
no need for virtual?
Tom Sepez
2016/04/28 22:03:49
Done.
|
| + |
| + CBC_QRFinderPattern* GetBottomLeft() const; |
| + CBC_QRFinderPattern* GetTopLeft() const; |
| + CBC_QRFinderPattern* GetTopRight() const; |
| + |
| private: |
| CBC_QRFinderPattern* m_bottomLeft; |
| CBC_QRFinderPattern* m_topLeft; |
| CBC_QRFinderPattern* m_topRight; |
| - |
| - public: |
| - CBC_QRFinderPatternInfo(CFX_PtrArray* patternCenters); |
| - virtual ~CBC_QRFinderPatternInfo(); |
| - CBC_QRFinderPattern* GetBottomLeft(); |
| - CBC_QRFinderPattern* GetTopLeft(); |
| - CBC_QRFinderPattern* GetTopRight(); |
| }; |
| #endif // XFA_FXBARCODE_QRCODE_BC_FINDERPATTERNINFO_H_ |