| 182 | } |
| 183 | |
| 184 | ByteArray ReadCodewords(const BitMatrix& bitMatrix, const Version& version, const FormatInformation& formatInfo) |
| 185 | { |
| 186 | if (!hasValidDimension(bitMatrix, version.isMicroQRCode())) |
| 187 | return {}; |
| 188 | |
| 189 | return version.isMicroQRCode() ? ReadMQRCodewords(bitMatrix, version, formatInfo) |
| 190 | : ReadQRCodewords(bitMatrix, version, formatInfo); |
| 191 | } |
| 192 | |
| 193 | } // namespace ZXing::QRCode |
no test coverage detected