// Take a look at the license at the top of the repository in the LICENSE file. use super::prelude::*; use glib::subclass::prelude::*; use crate::GhostPad; pub trait GhostPadImpl: PadImpl {} unsafe impl IsSubclassable for GhostPad { fn class_init(klass: &mut glib::Class) { >::class_init(klass); let _klass = klass.as_mut(); // Nothing to do here } }