| 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 crate::Preset; |
| 6 | |
| 7 | pub trait PresetImpl: super::element::ElementImpl {} |
| 8 | |
| 9 | unsafe impl<T: PresetImpl> IsImplementable<T> for Preset {} |
| 10 |
