io.qt.sensors.QtJambi_LibraryUtilities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-sensors Show documentation
Show all versions of qtjambi-sensors Show documentation
Provides access to sensor hardware and motion gesture recognition.
package io.qt.sensors;
import io.qt.*;
import static io.qt.QtUtilities.*;
/**
* @hidden
*/
final class QtJambi_LibraryUtilities {
final static int qtMajorVersion = 6;
final static int qtMinorVersion = 5;
final static int qtJambiPatch = 7;
final static InternalAccess internal;
static{
try {
initializePackage("io.qt.core");
loadQtLibrary("Sensors", LibraryRequirementMode.Mandatory);
loadQtJambiLibrary("Sensors");
} catch(Error t) {
throw t;
} catch(Throwable t) {
throw new ExceptionInInitializerError(t);
}
internal = internalAccess();
}
private static native InternalAccess internalAccess();
static void initialize() { };
private QtJambi_LibraryUtilities() throws InstantiationError { throw new InstantiationError("Cannot instantiate QtJambi_LibraryUtilities."); }
}