1use crate::prelude::*;
2use skia_bindings::{SkBBHFactory, SkBBoxHierarchy};
3
4// TODO: complete the wrapper
5pub type BBoxHierarchy = RCHandle<SkBBoxHierarchy>;
6
7// TODO: complete the wrapper
8pub type BBHFactory = Handle<SkBBHFactory>;
9
10impl NativeDrop for SkBBHFactory {
11 fn drop(&mut self) {
12 unimplemented!()
13 }
14}
15
16// TODO: complete the wrapper functions
17impl BBHFactory {}
18