1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use glib::subclass::prelude::*;
4
5pub trait GstObjectImpl: ObjectImpl {}
6
7unsafe impl<T: GstObjectImpl> IsSubclassable<T> for crate::Object {}
8