Files
MAG160C/analysis/jadx_magcx/cn/com/magnity/magnitycx/sdk/BasePara1.java
T

47 lines
1.0 KiB
Java

package cn.com.magnity.magnitycx.sdk;
/* loaded from: classes.dex */
public class BasePara1 implements Cloneable {
public int devType;
public int fpaFlip;
public int fpaGain;
public int fpaHeight;
public int fpaWidth;
public int fps;
public int gfid;
public int gsk;
public int hwVersion;
public int interFrame;
public int interLine;
public int reserved1;
public int reserved2;
public int serialNumber;
public int swVersion;
public BasePara1() {
reset();
}
public void reset() {
this.serialNumber = 0;
this.hwVersion = 0;
this.devType = 0;
this.swVersion = 0;
this.reserved1 = 0;
this.fpaWidth = 0;
this.fpaHeight = 0;
this.fps = 0;
this.reserved2 = 0;
this.fpaGain = 0;
this.fpaFlip = 0;
this.interFrame = 0;
this.interLine = 0;
this.gfid = 0;
this.gsk = 0;
}
public Object clone() throws CloneNotSupportedException {
return super.clone();
}
}