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