Rabbit-R1/switch port/java/sources/com/journeyapps/barcodescanner/CompoundBarcodeView.java

20 lines
540 B
Java
Raw Normal View History

2024-05-21 16:08:36 -05:00
package com.journeyapps.barcodescanner;
import android.content.Context;
import android.util.AttributeSet;
/* loaded from: classes3.dex */
public class CompoundBarcodeView extends DecoratedBarcodeView {
public CompoundBarcodeView(Context context) {
super(context);
}
public CompoundBarcodeView(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
public CompoundBarcodeView(Context context, AttributeSet attributeSet, int i) {
super(context, attributeSet, i);
}
}