1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
use crate::prelude::*;
use skia_bindings::SkBBHFactory;

// TODO: complete the implementation
pub type BBHFactory = Handle<SkBBHFactory>;

impl NativeDrop for SkBBHFactory {
    fn drop(&mut self) {
        unimplemented!()
    }
}

// TODO: complete the implementation
impl Handle<SkBBHFactory> {}