diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2016-03-21 15:15:56 -0400 |
---|---|---|
committer | Dan Sinclair <dsinclair@chromium.org> | 2016-03-21 15:15:56 -0400 |
commit | a98600aeb8d815c297834aa5006f5c3ea20dde6d (patch) | |
tree | f5e8d107353a1355378f096098c58b01b3d8f828 /xfa/fxbarcode/oned/BC_OnedUPCAReader.h | |
parent | 69bbb0010cb83a7fa63d0901df6aef1de0ccfc0c (diff) | |
download | pdfium-a98600aeb8d815c297834aa5006f5c3ea20dde6d.tar.xz |
Move xfa/include/fxbarcode/BC_Barcode.h to xfa/fxbarcode.
This CL splits apart the larger header into individual class headers in the
xfa/fxbarcode directory.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1816133002 .
Diffstat (limited to 'xfa/fxbarcode/oned/BC_OnedUPCAReader.h')
-rw-r--r-- | xfa/fxbarcode/oned/BC_OnedUPCAReader.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/xfa/fxbarcode/oned/BC_OnedUPCAReader.h b/xfa/fxbarcode/oned/BC_OnedUPCAReader.h index 306683e1cc..4d3f479b71 100644 --- a/xfa/fxbarcode/oned/BC_OnedUPCAReader.h +++ b/xfa/fxbarcode/oned/BC_OnedUPCAReader.h @@ -7,18 +7,21 @@ #ifndef XFA_FXBARCODE_ONED_BC_ONEDUPCAREADER_H_ #define XFA_FXBARCODE_ONED_BC_ONEDUPCAREADER_H_ +#include "core/include/fxcrt/fx_string.h" +#include "core/include/fxcrt/fx_system.h" +#include "xfa/fxbarcode/oned/BC_OneDimReader.h" + class CBC_BinaryBitmap; class CBC_CommonBitArray; -class CBC_OneDimReader; class CBC_OnedEAN13Reader; -class CBC_OnedUPCAReader; -class CBC_OnedUPCAReader : public CBC_OneDimReader { - private: - CBC_OnedEAN13Reader* m_ean13Reader; +class CBC_OnedUPCAReader : public CBC_OneDimReader { public: CBC_OnedUPCAReader(); virtual ~CBC_OnedUPCAReader(); + + virtual void Init(); + CFX_ByteString DecodeRow(int32_t rowNumber, CBC_CommonBitArray* row, int32_t hints, @@ -30,7 +33,6 @@ class CBC_OnedUPCAReader : public CBC_OneDimReader { int32_t& e); CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e); CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t hints, int32_t& e); - virtual void Init(); protected: int32_t DecodeMiddle(CBC_CommonBitArray* row, @@ -38,6 +40,10 @@ class CBC_OnedUPCAReader : public CBC_OneDimReader { CFX_ByteString& resultString, int32_t& e); CFX_ByteString MaybeReturnResult(CFX_ByteString& result, int32_t& e); + + private: + CBC_OnedEAN13Reader* m_ean13Reader; + }; #endif // XFA_FXBARCODE_ONED_BC_ONEDUPCAREADER_H_ |