package qt /* #include "gen_qscopedpointer.h" #include */ import "C" import ( "unsafe" ) type QScopedPointerPodDeleter struct { h *C.QScopedPointerPodDeleter } func (this *QScopedPointerPodDeleter) cPointer() *C.QScopedPointerPodDeleter { if this == nil { return nil } return this.h } func newQScopedPointerPodDeleter(h *C.QScopedPointerPodDeleter) *QScopedPointerPodDeleter { if h == nil { return nil } return &QScopedPointerPodDeleter{h: h} } func newQScopedPointerPodDeleter_U(h unsafe.Pointer) *QScopedPointerPodDeleter { return newQScopedPointerPodDeleter((*C.QScopedPointerPodDeleter)(h)) } func (this *QScopedPointerPodDeleter) Delete() { C.QScopedPointerPodDeleter_Delete(this.h) }