#[derive(Debug, Clone)]
pub struct LiveObject(*mut libc::c_long);
impl LiveObject {
pub fn new(obj: *mut libc::c_long) -> Self {
LiveObject(obj)
}
pub fn as_ptr(&self) -> *mut libc::c_long {
self.0
}
}
impl Drop for LiveObject {
fn drop(&mut self) {
}
}