mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
70 lines
1.6 KiB
Go
70 lines
1.6 KiB
Go
package qt6
|
|
|
|
/*
|
|
|
|
#include "gen_qexception.h"
|
|
#include <stdlib.h>
|
|
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"runtime"
|
|
"unsafe"
|
|
)
|
|
|
|
type QtPrivate__ExceptionStore struct {
|
|
h *C.QtPrivate__ExceptionStore
|
|
}
|
|
|
|
func (this *QtPrivate__ExceptionStore) cPointer() *C.QtPrivate__ExceptionStore {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return this.h
|
|
}
|
|
|
|
func (this *QtPrivate__ExceptionStore) UnsafePointer() unsafe.Pointer {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return unsafe.Pointer(this.h)
|
|
}
|
|
|
|
func newQtPrivate__ExceptionStore(h *C.QtPrivate__ExceptionStore) *QtPrivate__ExceptionStore {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
return &QtPrivate__ExceptionStore{h: h}
|
|
}
|
|
|
|
func UnsafeNewQtPrivate__ExceptionStore(h unsafe.Pointer) *QtPrivate__ExceptionStore {
|
|
return newQtPrivate__ExceptionStore((*C.QtPrivate__ExceptionStore)(h))
|
|
}
|
|
|
|
func (this *QtPrivate__ExceptionStore) HasException() bool {
|
|
return (bool)(C.QtPrivate__ExceptionStore_HasException(this.h))
|
|
}
|
|
|
|
func (this *QtPrivate__ExceptionStore) ThrowPossibleException() {
|
|
C.QtPrivate__ExceptionStore_ThrowPossibleException(this.h)
|
|
}
|
|
|
|
func (this *QtPrivate__ExceptionStore) RethrowException() {
|
|
C.QtPrivate__ExceptionStore_RethrowException(this.h)
|
|
}
|
|
|
|
// Delete this object from C++ memory.
|
|
func (this *QtPrivate__ExceptionStore) Delete() {
|
|
C.QtPrivate__ExceptionStore_Delete(this.h)
|
|
}
|
|
|
|
// GoGC adds a Go Finalizer to this pointer, so that it will be deleted
|
|
// from C++ memory once it is unreachable from Go memory.
|
|
func (this *QtPrivate__ExceptionStore) GoGC() {
|
|
runtime.SetFinalizer(this, func(this *QtPrivate__ExceptionStore) {
|
|
this.Delete()
|
|
runtime.KeepAlive(this.h)
|
|
})
|
|
}
|