org.bytedeco.spinnaker.Spinnaker_C.spinDeviceEvent Maven / Gradle / Ivy
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
package org.bytedeco.spinnaker.Spinnaker_C;
import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;
import static org.bytedeco.spinnaker.global.Spinnaker_C.*;
/**
* Handle for device event functionality. Created by calling
* spinDeviceEventCreate(), which requires a call to spinDeviceEventDestroy()
* to destroy.
*/
@Namespace @Name("void") @Opaque @Properties(inherit = org.bytedeco.spinnaker.presets.Spinnaker_C.class)
public class spinDeviceEvent extends Pointer {
/** Empty constructor. Calls {@code super((Pointer)null)}. */
public spinDeviceEvent() { super((Pointer)null); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public spinDeviceEvent(Pointer p) { super(p); }
}