| 1 | // Take a look at the license at the top of the repository in the LICENSE file. |
|---|---|
| 2 | |
| 3 | use glib::subclass::prelude::*; |
| 4 | |
| 5 | use super::prelude::*; |
| 6 | use crate::ProxyPad; |
| 7 | |
| 8 | pub trait ProxyPadImpl: PadImpl {} |
| 9 | |
| 10 | unsafe impl<T: ProxyPadImpl> IsSubclassable<T> for ProxyPad {} |
| 11 |
