mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
20 lines
540 B
Java
20 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);
|
||
|
}
|
||
|
}
|