mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
12 lines
372 B
Java
12 lines
372 B
Java
package com.google.zxing;
|
|
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface Reader {
|
|
Result decode(BinaryBitmap binaryBitmap) throws NotFoundException, ChecksumException, FormatException;
|
|
|
|
Result decode(BinaryBitmap binaryBitmap, Map<DecodeHintType, ?> map) throws NotFoundException, ChecksumException, FormatException;
|
|
|
|
void reset();
|
|
}
|