#pragma once
#include <vector>
namespace ZXing {
class BitMatrix;
namespace Aztec {
class DetectorResult;
DetectorResult Detect(const BitMatrix& image, bool isPure, bool tryHarder = true);
using DetectorResults = std::vector<DetectorResult>;
DetectorResults Detect(const BitMatrix& image, bool isPure, bool tryHarder, int maxSymbols);
} }