23 lines
412 B
C++
23 lines
412 B
C++
/*
|
|
* Copyright 2016 Nu-book Inc.
|
|
* Copyright 2016 ZXing authors
|
|
*/
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#pragma once
|
|
|
|
#include "Reader.h"
|
|
|
|
namespace ZXing::Aztec {
|
|
|
|
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::Aztec
|