use super::proxy_rust::QObjectProxyRust;
#[cxx::bridge]
pub mod ffi {
unsafe extern "C++" {}
extern "Rust" {
type QObjectProxyRust;
# [Self = QObjectProxyRust]
# [cxx_name = dropSelf]
unsafe fn drop_self_impl(self_ptr: *mut QObjectProxyRust, rust_obj_ptr: *const u8);
}
}
unsafe impl cxx::ExternType for QObjectProxyRust {
type Id = cxx::type_id!(QObjectProxyRust);
type Kind = cxx::kind::Trivial;
}