25 lines
457 B
C
25 lines
457 B
C
|
|
/*
|
||
|
|
* Copyright 2016 Nu-book Inc.
|
||
|
|
* Copyright 2016 ZXing authors
|
||
|
|
*/
|
||
|
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Reader.h"
|
||
|
|
|
||
|
|
namespace ZXing::DataMatrix {
|
||
|
|
|
||
|
|
class Reader : public ZXing::Reader
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
using ZXing::Reader::Reader;
|
||
|
|
|
||
|
|
Barcode decode(const BinaryBitmap& image) const override;
|
||
|
|
#ifdef __cpp_impl_coroutine
|
||
|
|
Barcodes decode(const BinaryBitmap& image, int maxSymbols) const override;
|
||
|
|
#endif
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace ZXing::DataMatrix
|