io.qt.gui.gl.GLDEBUGPROC Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi Show documentation
Show all versions of qtjambi Show documentation
QtJambi base module containing QtCore, QtGui and QtWidgets.
package io.qt.gui.gl;
/**
* Java wrapper for Qt function pointer GLDEBUGPROC
*/
@FunctionalInterface
public interface GLDEBUGPROC extends io.qt.QtObjectInterface {
public void accept(int source, int type, int id, int severity, java.lang.String message);
/**
* Implementor class for interface {@link GLDEBUGPROC}
*/
public static abstract class Impl extends io.qt.QtObject implements GLDEBUGPROC{
static {
QtJambi_LibraryUtilities.initialize();
}
public Impl(){
super((QPrivateConstructor)null);
initialize_native(this);
}
protected Impl(QPrivateConstructor p){
super(p);
}
private static native void initialize_native(GLDEBUGPROC instance);
@io.qt.NativeAccess
private final static class ConcreteWrapper extends Impl {
private ConcreteWrapper(QPrivateConstructor c){
super(c);
}
@Override
public native void accept(int source, int type, int id, int severity, java.lang.String message);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy