commit 25/07/2025
This commit is contained in:
10
src/CRSDK/CrPresetPTZFSettingType.java
Normal file
10
src/CRSDK/CrPresetPTZFSettingType.java
Normal file
@@ -0,0 +1,10 @@
|
||||
package CRSDK;
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public enum CrPresetPTZFSettingType {
|
||||
CrPresetPTZFSettingType_current(0x01);
|
||||
|
||||
private final CrInt8u value;
|
||||
CrPresetPTZFSettingType(int value) { this.value = new CrInt8u(value); }
|
||||
public int getValue() { return value.intValue(); }
|
||||
}
|
||||
Reference in New Issue
Block a user