Index: xfa/fxbarcode/pdf417/BC_PDF417BarcodeValue.h |
diff --git a/xfa/fxbarcode/pdf417/BC_PDF417BarcodeValue.h b/xfa/fxbarcode/pdf417/BC_PDF417BarcodeValue.h |
index 29f0a833a95a4b9cfd0eb5fce83d4535fcbfa0b7..0be71a1fb2ea0927fc31bff7c4decc557a7f3596 100644 |
--- a/xfa/fxbarcode/pdf417/BC_PDF417BarcodeValue.h |
+++ b/xfa/fxbarcode/pdf417/BC_PDF417BarcodeValue.h |
@@ -9,10 +9,11 @@ |
#include "core/fxcrt/include/fx_basic.h" |
-class CBC_BarcodeValue { |
+class CBC_BarcodeValue final { |
public: |
CBC_BarcodeValue(); |
- virtual ~CBC_BarcodeValue(); |
+ ~CBC_BarcodeValue(); |
+ |
void setValue(int32_t value); |
CFX_Int32Array* getValue(); |
int32_t getConfidence(int32_t value); |
@@ -22,4 +23,7 @@ class CBC_BarcodeValue { |
CFX_Int32Array m_values; |
}; |
+using CBC_BarcodeValueArray = CFX_ArrayTemplate<CBC_BarcodeValue*>; |
+using CBC_BarcodeValueArrayArray = CFX_ArrayTemplate<CBC_BarcodeValueArray*>; |
+ |
#endif // XFA_FXBARCODE_PDF417_BC_PDF417BARCODEVALUE_H_ |