QRReader.h 414 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright 2016 Nu-book Inc.
  3. * Copyright 2016 ZXing authors
  4. */
  5. // SPDX-License-Identifier: Apache-2.0
  6. #pragma once
  7. #include "Reader.h"
  8. namespace ZXing::QRCode {
  9. class Reader : public ZXing::Reader
  10. {
  11. public:
  12. using ZXing::Reader::Reader;
  13. Barcode decode(const BinaryBitmap& image) const override;
  14. Barcodes decode(const BinaryBitmap& image, int maxSymbols) const override;
  15. };
  16. } // namespace ZXing::QRCode