1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use glib::subclass::prelude::*;
4
5use crate::Preset;
6
7pub trait PresetImpl: super::element::ElementImpl {}
8
9unsafe impl<T: PresetImpl> IsImplementable<T> for Preset {}
10