Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3270)

Unified Diff: xfa/fxbarcode/BC_ResultPoint.h

Issue 1936733002: Replace CFX_PtrArray with typesafe CFX_ArrayTemplate, part 10 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Better names. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | xfa/fxbarcode/pdf417/BC_PDF417Detector.h » ('j') | xfa/fxbarcode/pdf417/BC_PDF417Detector.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/BC_ResultPoint.h
diff --git a/xfa/fxbarcode/BC_ResultPoint.h b/xfa/fxbarcode/BC_ResultPoint.h
index 1497b311fc265c6725a085722fb3f0d193263549..e819fa5f6e30831d01da95509113e43f48294550 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_
« no previous file with comments | « no previous file | xfa/fxbarcode/pdf417/BC_PDF417Detector.h » ('j') | xfa/fxbarcode/pdf417/BC_PDF417Detector.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698