2020-12-15 10:53:31 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
2019-09-25 13:11:54 +00:00
|
|
|
|
|
|
|
use glib::subclass::prelude::*;
|
|
|
|
|
2020-11-21 13:46:48 +00:00
|
|
|
use crate::Preset;
|
2019-09-25 13:11:54 +00:00
|
|
|
|
2020-07-25 08:02:04 +00:00
|
|
|
pub trait PresetImpl: super::element::ElementImpl {}
|
2019-09-25 13:11:54 +00:00
|
|
|
|
2020-07-25 08:02:04 +00:00
|
|
|
unsafe impl<T: PresetImpl> IsImplementable<T> for Preset {
|
2021-03-14 08:29:44 +00:00
|
|
|
fn interface_init(_iface: &mut glib::Interface<Self>) {}
|
2021-03-09 11:50:32 +00:00
|
|
|
|
|
|
|
fn instance_init(_instance: &mut glib::subclass::InitializingObject<T>) {}
|
2019-09-25 13:11:54 +00:00
|
|
|
}
|