diff options
Diffstat (limited to 'xfa/fxbarcode/oned/BC_OneDReader.h')
-rw-r--r-- | xfa/fxbarcode/oned/BC_OneDReader.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/xfa/fxbarcode/oned/BC_OneDReader.h b/xfa/fxbarcode/oned/BC_OneDReader.h index 2bab06e9b8..77e04777a4 100644 --- a/xfa/fxbarcode/oned/BC_OneDReader.h +++ b/xfa/fxbarcode/oned/BC_OneDReader.h @@ -15,17 +15,18 @@ class CBC_CommonBitArray; class CBC_OneDReader : public CBC_Reader { public: CBC_OneDReader(); - virtual ~CBC_OneDReader(); - virtual CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e); - virtual CFX_ByteString Decode(CBC_BinaryBitmap* image, - int32_t hints, - int32_t& e); + ~CBC_OneDReader() override; + + // CBC_Reader + CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e) override; + CFX_ByteString Decode(CBC_BinaryBitmap* image, + int32_t hints, + int32_t& e) override; + virtual CFX_ByteString DecodeRow(int32_t rowNumber, CBC_CommonBitArray* row, int32_t hints, - int32_t& e) { - return ""; - } + int32_t& e); private: CFX_ByteString DeDecode(CBC_BinaryBitmap* image, int32_t hints, int32_t& e); |