extern "C" {
#[doc(hidden)] fn cv_PtrOfPriorBoxLayer_get(ptr: *mut c_void) -> *mut c_void;
#[doc(hidden)] fn cv_delete_PtrOfPriorBoxLayer(ptr: *mut c_void);
}
#[allow(dead_code)]
pub struct PtrOfPriorBoxLayer {
pub(crate) ptr: *mut c_void
}
impl PtrOfPriorBoxLayer {
#[doc(hidden)] pub fn as_raw_PtrOfPriorBoxLayer(&self) -> *mut c_void {
self.ptr
}
}
impl Drop for PtrOfPriorBoxLayer {
fn drop(&mut self) {
unsafe { cv_delete_PtrOfPriorBoxLayer(self.ptr) };
}
}