mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
19 lines
540 B
Java
19 lines
540 B
Java
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);
|
|
}
|
|
}
|