diff options
author | tsepez <tsepez@chromium.org> | 2016-05-02 09:34:35 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-02 09:34:35 -0700 |
commit | 8f0d0da1b12e29133fb48a778603c03bf0056124 (patch) | |
tree | eacee99738a238d488c74723fef01a6b5c2f485d /xfa/fxbarcode/BC_ResultPoint.h | |
parent | a86d113be692153d7707da377d11d4f09cb12c9b (diff) | |
download | pdfium-8f0d0da1b12e29133fb48a778603c03bf0056124.tar.xz |
Replace CFX_PtrArray with typesafe CFX_ArrayTemplate, part 10
Review-Url: https://codereview.chromium.org/1936733002
Diffstat (limited to 'xfa/fxbarcode/BC_ResultPoint.h')
-rw-r--r-- | xfa/fxbarcode/BC_ResultPoint.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/xfa/fxbarcode/BC_ResultPoint.h b/xfa/fxbarcode/BC_ResultPoint.h index 1497b311fc..e819fa5f6e 100644 --- a/xfa/fxbarcode/BC_ResultPoint.h +++ b/xfa/fxbarcode/BC_ResultPoint.h @@ -7,7 +7,7 @@ #ifndef XFA_FXBARCODE_BC_RESULTPOINT_H_ #define XFA_FXBARCODE_BC_RESULTPOINT_H_ -#include "core/fxcrt/include/fx_system.h" +#include "core/fxcrt/include/fx_basic.h" class CBC_ResultPoint { public: @@ -22,4 +22,7 @@ class CBC_ResultPoint { FX_FLOAT m_y; }; +using CBC_ResultPointArray = CFX_ArrayTemplate<CBC_ResultPoint*>; +using CBC_ResultPointArrayArray = CFX_ArrayTemplate<CBC_ResultPointArray*>; + #endif // XFA_FXBARCODE_BC_RESULTPOINT_H_ |